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. executingThis is used to determine the operations that need cancelling.private java.util.Map<java.nio.channels.Channel,ActionSet>ActionDistributor. selectingThis is used to keep track of actions currently in selection.Methods in org.simpleframework.transport.reactor that return ActionSet Modifier and Type Method Description ActionSetActionSelector. 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 voidActionDistributor. expire(ActionSet set, long time)This method is used to expire registered operations that remain idle within the selector.private voidActionDistributor. expire(ActionSet set, Action action)This method is used to expire registered operations that remain idle within the selector.private voidActionDistributor. process(ActionSet set)This will use the specified action set to acquire the channel andOperationassociated with it to hand to the executor to perform the channel operation.private voidActionDistributor. remove(ActionSet set)This method ensures that references to the actions and channel are cleared from this instance.private voidActionDistributor. update(Action action, ActionSet set)Here the specifiedOperationobject is registered with the selector.private voidActionDistributor. update(ActionSet set, int interest)This is used to update the interested operations of a set of actions.
-