Add a javadoc for AbstractChannelBuilder.buildEssentials

This commit is contained in:
Carl Mastrangelo 2015-08-07 09:54:32 -07:00
parent 9b733b57e0
commit 7d3d80e69f
1 changed files with 5 additions and 0 deletions

View File

@ -180,5 +180,10 @@ public abstract class AbstractChannelBuilder<BuilderT extends AbstractChannelBui
}
}
/**
* Children of AbstractChannelBuilder should override this method to provide transport specific
* information for the channel. This method is mean for Transport implementors and should not be
* used by normal users.
*/
protected abstract ChannelEssentials buildEssentials();
}