Uses of Class
org.restlet.engine.io.Buffer

Packages that use Buffer
org.restlet.engine.connector New advanced internal HTTP connector. 
org.restlet.engine.io Supports input and output work. 
 

Uses of Buffer in org.restlet.engine.connector
 

Methods in org.restlet.engine.connector that return Buffer
 Buffer Way.getBuffer()
          Returns the IO buffer.
 

Methods in org.restlet.engine.connector with parameters of type Buffer
 boolean Way.canLoop(Buffer buffer, Object... args)
          Indicates if the processing loop can continue.
 boolean Way.couldDrain(Buffer buffer, Object... args)
          Indicates if the buffer could be drained again.
 boolean Way.couldFill(Buffer buffer, Object... args)
          Indicates if the buffer could be filled again.
 int OutboundWay.onDrain(Buffer buffer, int maxDrained, Object... args)
           
 int InboundWay.onDrain(Buffer buffer, int maxDrained, Object... args)
           
abstract  int Way.onDrain(Buffer buffer, int maxDrained, Object... args)
          Drains the byte buffer by writing available bytes to the socket channel.
 int OutboundWay.onFill(Buffer buffer, Object... args)
           
 int InboundWay.onFill(Buffer buffer, Object... args)
           
abstract  int Way.onFill(Buffer buffer, Object... args)
          Fills the byte buffer by writing the current message.
 

Uses of Buffer in org.restlet.engine.io
 

Methods in org.restlet.engine.io that return Buffer
protected  Buffer NbChannelInputStream.getBuffer()
          Returns the internal byte buffer.
 Buffer BufferedSelectionChannel.getBuffer()
          Returns the source buffer.
 

Methods in org.restlet.engine.io with parameters of type Buffer
 boolean BufferProcessor.canLoop(Buffer buffer, Object... args)
          Indicates if the processing loop can continue.
 boolean NbChannelInputStream.canLoop(Buffer buffer, Object... args)
          Indicates if the processing loop can continue.
 boolean BufferedSelectionChannel.canLoop(Buffer buffer, Object... args)
          Indicates if the processing loop can continue.
 boolean WritableBufferedChannel.couldDrain(Buffer buffer, Object... args)
          Indicates if the buffer could be drained again.
 boolean ReadableBufferedChannel.couldDrain(Buffer buffer, Object... args)
          Indicates if the buffer could be drained again.
 boolean BufferProcessor.couldFill(Buffer buffer, Object... args)
          Indicates if the buffer could be filled again.
 boolean WritableBufferedChannel.couldFill(Buffer buffer, Object... args)
          Indicates if the buffer could be filled again.
 boolean NbChannelInputStream.couldFill(Buffer buffer, Object... args)
          Indicates if the buffer could be filled again.
 boolean ReadableBufferedChannel.couldFill(Buffer buffer, Object... args)
          Indicates if the buffer could be filled again.
 int BufferProcessor.onDrain(Buffer buffer, int maxDrained, Object... args)
          Drains the byte buffer.
 int WritableBufferedChannel.onDrain(Buffer buffer, int maxDrained, Object... args)
          Drains the byte buffer.
 int NbChannelInputStream.onDrain(Buffer buffer, int maxDrained, Object... args)
          Drains the byte buffer by returning available bytes as InputStream bytes.
 int ReadableSizedSelectionChannel.onDrain(Buffer buffer, int maxDrained, Object... args)
           
 int ReadableChunkedChannel.onDrain(Buffer buffer, int maxDrained, Object... args)
          Drains the byte buffer.
 int ReadableBufferedChannel.onDrain(Buffer buffer, int maxDrained, Object... args)
          Drains the byte buffer.
 int BufferProcessor.onFill(Buffer buffer, Object... args)
          Fills the byte buffer.
 int WritableBufferedChannel.onFill(Buffer buffer, Object... args)
          Fills the byte buffer by writing the current message.
 int NbChannelInputStream.onFill(Buffer buffer, Object... args)
          Fills the byte buffer by reading the source channel.
 int ReadableBufferedChannel.onFill(Buffer buffer, Object... args)
          Fills the byte buffer by writing the current message.
 

Constructors in org.restlet.engine.io with parameters of type Buffer
BufferedSelectionChannel(Buffer buffer, T source, WakeupListener wakeupListener)
          Constructor.
ReadableBufferedChannel(CompletionListener completionListener, Buffer buffer, ReadableSelectionChannel source, WakeupListener wakeupListener)
          Constructor.
ReadableChunkedChannel(CompletionListener completionListener, Buffer buffer, ReadableSelectionChannel source, WakeupListener wakeupListener)
          Constructor.
ReadableSizedSelectionChannel(CompletionListener completionListener, Buffer buffer, ReadableSelectionChannel source, long availableSize, WakeupListener wakeupListener)
          Constructor.
WritableBufferedChannel(Buffer buffer, WritableSelectionChannel target, WakeupListener wakeupListener)
          Constructor.
 



Copyright © 2005-2013 Restlet.