@Override
public void dump(Appendable out, String indent) throws IOException
{
super.dump(out, indent);
final String eol = System.getProperty("line.separator");
Dumpable comets = new Dumpable()
{
public String dump()
{
return null;
}
public void dump(Appendable out, String indent) throws IOException
{
Set<String> knownComets = getKnownComets();
out.append("Connected comets: ").append(String.valueOf(knownComets.size())).append(eol);
ContainerLifeCycle.dump(out, indent, knownComets);
}
};
Dumpable channels = new Dumpable()
{
public String dump()
{
return null;
}