Uses of Class
org.jgrapes.io.events.Output
Package
Description
Provides components for building a HTTP server based on the
core and IO components.
I/O related components built on top of the core package.
Provides the events used by the I/O related components.
Classes for managing processes.
Networking related I/O classes.
-
Uses of Output in org.jgrapes.http
Modifier and TypeMethodDescriptionvoid
Handles output from the application.void
Receives the message body of a response. -
Uses of Output in org.jgrapes.io
Modifier and TypeMethodDescriptionvoid
FileStorage.onOutput
(Output<ByteBuffer> event, Channel channel) HandleOutput
events by writing them to the file, if a channel exists. -
Uses of Output in org.jgrapes.io.events
Modifier and TypeMethodDescriptionstatic Output
<ByteBuffer> Output.from
(byte[] data, boolean endOfRecord) Convenience method that creates a Outputevent from a byte[]
.static Output
<CharBuffer> Convenience method that creates a Outputevent from a String
.Output.fromSink
(ManagedBuffer<B> buffer, boolean endOfRecord) Create a new event with the given buffer.Output.fromSource
(ManagedBuffer<B> buffer, boolean endOfRecord) Create a new event with the given buffer. -
Uses of Output in org.jgrapes.io.process
Modifier and TypeMethodDescriptionvoid
ProcessManager.onOutput
(Output<ByteBuffer> event, ProcessManager.ProcessChannel channel) Writes the data passed in the event. -
Uses of Output in org.jgrapes.net
Modifier and TypeMethodDescriptionvoid
SocketConnectionManager.onOutput
(Output<ByteBuffer> event, SocketConnectionManager.SocketChannelImpl channel) Writes the data passed in the event.void
SslCodec.onOutput
(Output<ByteBuffer> event, org.jgrapes.net.SslCodec.PlainChannel plainChannel) Sends plain data through the engine and then upstream.void
SocketConnectionManager.SocketChannelImpl.write
(Output<ByteBuffer> event) Write the data on this channel.