Uses of Interface
org.simpleframework.transport.reactor.Reactor
-
-
Uses of Reactor in org.simpleframework.http.core
Fields in org.simpleframework.http.core declared as Reactor Modifier and Type Field Description private Reactor
ContainerController. reactor
This is the reactor used to schedule the collectors. -
Uses of Reactor in org.simpleframework.http.socket.service
Fields in org.simpleframework.http.socket.service declared as Reactor Modifier and Type Field Description private Reactor
FrameCollector. reactor
This is the reactor used to schedule this operation for reads.private Reactor
ServiceDispatcher. reactor
This is used to notify of read events on the TCP channel.private Reactor
SessionBuilder. reactor
This is the reactor used to register for I/O notifications.Constructors in org.simpleframework.http.socket.service with parameters of type Reactor Constructor Description FrameCollector(FrameEncoder encoder, Session session, Request request, Reactor reactor)
Constructor for theFrameCollector
object.FrameConnection(Request request, Response response, Reactor reactor)
Constructor for theFrameConnection
object.SessionBuilder(Scheduler scheduler, Reactor reactor, long ping)
Constructor for theSessionBuilder
object. -
Uses of Reactor in org.simpleframework.transport
Fields in org.simpleframework.transport declared as Reactor Modifier and Type Field Description private Reactor
FlushScheduler. reactor
This is the reactor to used to execute the operation.private Reactor
Handshake. reactor
This is the reactor used to register for I/O notifications.private Reactor
OperationFactory. reactor
This is the reactor used to register for I/O notifications.protected Reactor
Phase. reactor
This is the reactor that is used to schedule execution.private Reactor
ServerCleaner. reactor
This is the internal write reactor that is terminated.private Reactor
TransportSocketProcessor. reactor
This is the processor used to process transport objects.Constructors in org.simpleframework.transport with parameters of type Reactor Constructor Description Committer(Negotiation state, Reactor reactor, Trace trace)
Constructor for theCommitter
task.Consumer(Negotiation state, Reactor reactor, Trace trace)
Constructor for theConsumer
task.FlushScheduler(Socket socket, Reactor reactor, Operation task, java.lang.Object lock)
Constructor for theFlushScheduler
object.Handshake(TransportProcessor processor, Transport transport, Reactor reactor)
Constructor for theHandshake
object.Handshake(TransportProcessor processor, Transport transport, Reactor reactor, boolean client)
Constructor for theHandshake
object.Handshake(TransportProcessor processor, Transport transport, Reactor reactor, int size)
Constructor for theHandshake
object.Handshake(TransportProcessor processor, Transport transport, Reactor reactor, int size, boolean client)
Constructor for theHandshake
object.OperationFactory(TransportProcessor processor, Reactor reactor, int buffer)
Constructor for theOperationFactory
object.OperationFactory(TransportProcessor processor, Reactor reactor, int buffer, int threshold)
Constructor for theOperationFactory
object.OperationFactory(TransportProcessor processor, Reactor reactor, int buffer, int threshold, boolean client)
Constructor for theOperationFactory
object.Phase(Negotiation state, Reactor reactor, Trace trace, int require)
Constructor for thePhase
object.Producer(Negotiation state, Reactor reactor, Trace trace)
Constructor for theProducer
task.ServerCleaner(TransportProcessor processor, ConcurrentExecutor executor, Reactor reactor)
Constructor for theServerCleaner
object.SocketBufferWriter(Socket socket, Reactor reactor, int buffer, int threshold)
Constructor for theSocketBufferWriter
object.SocketFlusher(SocketBuffer buffer, Socket socket, Reactor reactor)
Constructor for theSocketFlusher
object.SocketTransport(Socket socket, Reactor reactor)
Constructor for theSocketTransport
object.SocketTransport(Socket socket, Reactor reactor, int buffer)
Constructor for theSocketTransport
object.SocketTransport(Socket socket, Reactor reactor, int buffer, int threshold)
Constructor for theSocketTransport
object. -
Uses of Reactor in org.simpleframework.transport.connect
Fields in org.simpleframework.transport.connect declared as Reactor Modifier and Type Field Description private Reactor
SocketListener. reactor
This is the reactor used to notify the acceptor of sockets. -
Uses of Reactor in org.simpleframework.transport.reactor
Classes in org.simpleframework.transport.reactor that implement Reactor Modifier and Type Class Description class
ExecutorReactor
TheExecutorReactor
is used to schedule operation for execution using anExecutor
implementation.class
SynchronousReactor
TheSynchronousReactor
object is used to execute the ready operations of within a single synchronous thread.
-