Uses of Class
org.jgrapes.io.events.Output
Packages that use 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
Methods in org.jgrapes.http with parameters of type OutputModifier and TypeMethodDescriptionvoidHandles output from the application.voidReceives the message body of a response. -
Uses of Output in org.jgrapes.io
Methods in org.jgrapes.io with parameters of type OutputModifier and TypeMethodDescriptionvoidFileStorage.onOutput(Output<ByteBuffer> event, Channel channel) HandleOutputevents by writing them to the file, if a channel exists. -
Uses of Output in org.jgrapes.io.events
Methods in org.jgrapes.io.events that return OutputModifier 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.Constructors in org.jgrapes.io.events with parameters of type Output -
Uses of Output in org.jgrapes.io.process
Methods in org.jgrapes.io.process with parameters of type OutputModifier and TypeMethodDescriptionvoidProcessManager.onOutput(Output<ByteBuffer> event, ProcessManager.ProcessChannel channel) Writes the data passed in the event. -
Uses of Output in org.jgrapes.net
Methods in org.jgrapes.net with parameters of type OutputModifier and TypeMethodDescriptionvoidSocketConnectionManager.onOutput(Output<ByteBuffer> event, SocketConnectionManager.SocketChannelImpl channel) Writes the data passed in the event.voidSslCodec.onOutput(Output<ByteBuffer> event, org.jgrapes.net.SslCodec.PlainChannel plainChannel) Sends plain data through the engine and then upstream.voidSocketConnectionManager.SocketChannelImpl.write(Output<ByteBuffer> event) Write the data on this channel.