Uses of Class
org.simpleframework.transport.reactor.ActionSet
-
Packages that use ActionSet Package Description org.simpleframework.transport.reactor -
-
Uses of ActionSet in org.simpleframework.transport.reactor
Fields in org.simpleframework.transport.reactor with type parameters of type ActionSet Modifier and Type Field Description private java.util.Map<java.nio.channels.Channel,ActionSet>
ActionDistributor. executing
This is used to determine the operations that need cancelling.private java.util.Map<java.nio.channels.Channel,ActionSet>
ActionDistributor. selecting
This is used to keep track of actions currently in selection.Methods in org.simpleframework.transport.reactor that return ActionSet Modifier and Type Method Description ActionSet
ActionSelector. register(java.nio.channels.SelectableChannel channel, int interest)
This performs the actual registration of the channel for selection based on the provided interest bitmask.Methods in org.simpleframework.transport.reactor that return types with arguments of type ActionSet Modifier and Type Method Description java.util.List<ActionSet>
ActionSelector. registeredSets()
This is used to acquire all the action sets that are associated with this selector.private java.util.List<ActionSet>
ActionSelector. registeredSets(java.util.Iterator<java.nio.channels.SelectionKey> keys)
This is used to acquire all the action sets that are associated with this selector.java.util.List<ActionSet>
ActionSelector. selectedSets()
This is used to acquire all the action sets that are selected by this selector.private java.util.List<ActionSet>
ActionSelector. selectedSets(java.util.Iterator<java.nio.channels.SelectionKey> keys)
This is used to acquire all the action sets that are selected by this selector.Methods in org.simpleframework.transport.reactor with parameters of type ActionSet Modifier and Type Method Description private void
ActionDistributor. expire(ActionSet set, long time)
This method is used to expire registered operations that remain idle within the selector.private void
ActionDistributor. expire(ActionSet set, Action action)
This method is used to expire registered operations that remain idle within the selector.private void
ActionDistributor. process(ActionSet set)
This will use the specified action set to acquire the channel andOperation
associated with it to hand to the executor to perform the channel operation.private void
ActionDistributor. remove(ActionSet set)
This method ensures that references to the actions and channel are cleared from this instance.private void
ActionDistributor. update(Action action, ActionSet set)
Here the specifiedOperation
object is registered with the selector.private void
ActionDistributor. update(ActionSet set, int interest)
This is used to update the interested operations of a set of actions.
-