Package org.zeromq
Interface ZAgent.SelectorCreator
-
- Enclosing interface:
- ZAgent
@Deprecated public static interface ZAgent.SelectorCreatorDeprecated.Creates a selector and destroys it.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.nio.channels.Selectorcreate()Deprecated.Creates and opens a selector.voiddestroy(java.nio.channels.Selector selector)Deprecated.Destroys the previously opened selector.
-
-
-
Method Detail
-
create
java.nio.channels.Selector create() throws java.io.IOExceptionDeprecated.Creates and opens a selector.- Returns:
- the opened selector.
- Throws:
java.io.IOException
-
destroy
void destroy(java.nio.channels.Selector selector) throws java.io.IOExceptionDeprecated.Destroys the previously opened selector.- Parameters:
selector- the selector to close- Throws:
java.io.IOException
-
-