Uses of Class
org.objectweb.jonathan.apis.resources.Chunk

Packages that use Chunk
org.objectweb.david.apis.presentation Provides classes and interfaces reconciling the CORBA and Jonathan abstractions for presentation. 
org.objectweb.david.libs.presentation.portable Provides a set of classes and interfaces for "portable" presentation protocols. 
org.objectweb.jeremie.libs.presentation.std Provides a default implementation of a Jeremie marshaller factory. 
org.objectweb.jonathan.apis.presentation Provides a set of classes and interfaces for presentation protocols (marshallers and unmarshallers). 
org.objectweb.jonathan.apis.protocols.ip Provides a set of classes and interfaces refining the binding abstractions in the case of IP protocols, and introduces some connection management abstractions. 
org.objectweb.jonathan.apis.resources Provides a set of classes and interfaces dealing with resource management. 
org.objectweb.jonathan.libs.resources Provides implementations for various resources and managers. 
org.objectweb.jonathan.libs.resources.tcpip Provides a default implementation for TCP/IP connection management. 
 

Uses of Chunk in org.objectweb.david.apis.presentation
 

Methods in org.objectweb.david.apis.presentation with parameters of type Chunk
 DavidInputStream DavidStreamFactory.newInputStream(Chunk chunk, int read)
          Creates a new input stream, reading data from the provided chunk.
 

Uses of Chunk in org.objectweb.david.libs.presentation.portable
 

Fields in org.objectweb.david.libs.presentation.portable declared as Chunk
protected  Chunk PortableMarshallerFactory.PortableMarshaller.first
          The first chunk in the message.
protected  Chunk PortableMarshallerFactory.PortableMarshaller.current
          The current chunk in the message, i.e., the one data are written to.
protected  Chunk PortableMarshallerFactory.PortableUnMarshaller.first
          The first chunk in the message, i.e., the one data are read from.
 

Methods in org.objectweb.david.libs.presentation.portable that return Chunk
 Chunk PortableMarshallerFactory.PortableMarshaller.getState()
           
 

Methods in org.objectweb.david.libs.presentation.portable with parameters of type Chunk
 UnMarshaller PortableMarshallerFactory.newUnMarshaller(Chunk chunk, int read)
          Returns a new unmarshaller, using the provided chunk(s) as a data source.
 DavidInputStream PortableMarshallerFactory.newInputStream(Chunk chunk, int read)
          Creates a new input stream, reading data from the specified chunk provider.
 void PortableMarshallerFactory.PortableMarshaller.write(Chunk chunk)
           
 UnMarshaller CDRMarshallerFactory.newUnMarshaller(Chunk chunk, int read)
           
 DavidInputStream CDRMarshallerFactory.newInputStream(Chunk chunk, int read)
           
 

Constructors in org.objectweb.david.libs.presentation.portable with parameters of type Chunk
PortableMarshallerFactory.PortableUnMarshaller(Chunk first, int read)
          Creates a new unmarshaller.
 

Uses of Chunk in org.objectweb.jeremie.libs.presentation.std
 

Fields in org.objectweb.jeremie.libs.presentation.std declared as Chunk
static Chunk StdMarshallerFactory.empty_chunk
          An empty chunk.
protected  Chunk StdMarshallerFactory.StdMarshaller.first
           
protected  Chunk StdMarshallerFactory.StdMarshaller.current
           
protected  Chunk StdMarshallerFactory.StdUnMarshaller.first
           
 

Methods in org.objectweb.jeremie.libs.presentation.std that return Chunk
 Chunk StdMarshallerFactory.StdMarshaller.getState()
           
 

Methods in org.objectweb.jeremie.libs.presentation.std with parameters of type Chunk
 UnMarshaller StdMarshallerFactory.newUnMarshaller(Chunk chunk, int read)
          Returns a new unmarshaller using the provided chunk(s) as a data source.
 void StdMarshallerFactory.StdMarshaller.write(Chunk chunk)
           
 

Constructors in org.objectweb.jeremie.libs.presentation.std with parameters of type Chunk
StdMarshallerFactory.StdUnMarshaller(Chunk first, int read)
           
 

Uses of Chunk in org.objectweb.jonathan.apis.presentation
 

Methods in org.objectweb.jonathan.apis.presentation that return Chunk
 Chunk Marshaller.getState()
          Returns the state of the message as a (chain of) chunk(s).
 

Methods in org.objectweb.jonathan.apis.presentation with parameters of type Chunk
 UnMarshaller MarshallerFactory.newUnMarshaller(Chunk chunk, int read)
          Returns a new unmarshaller, using the provided chunk(s) as a data source.
 void Marshaller.write(Chunk chunk)
          Writes a chunk in the message.
 

Uses of Chunk in org.objectweb.jonathan.apis.protocols.ip
 

Methods in org.objectweb.jonathan.apis.protocols.ip with parameters of type Chunk
 void IpConnection.receive(Chunk chunk, int sz)
           
 void IpConnection.emit(Chunk chunk)
           
 

Uses of Chunk in org.objectweb.jonathan.apis.resources
 

Fields in org.objectweb.jonathan.apis.resources declared as Chunk
 Chunk Chunk.next
          The next chunk in the chain
 

Methods in org.objectweb.jonathan.apis.resources that return Chunk
 Chunk ChunkFactory.newChunk()
          Returns a chunk.
 Chunk ChunkFactory.newChunk(int size)
          Returns a chunk whose associated array of bytes is (at least) of size size.
 Chunk ChunkProvider.prepare()
          Returns a chunk to read data from.
 Chunk Chunk.duplicate()
          Duplicates the whole chunk.
 Chunk Chunk.duplicate(int offset, int top)
          Partially duplicates this chunk.
 

Uses of Chunk in org.objectweb.jonathan.libs.resources
 

Methods in org.objectweb.jonathan.libs.resources that return Chunk
 Chunk SimpleChunkFactory.newChunk()
          Returns a chunk of a default size.
 Chunk SimpleChunkFactory.newChunk(int size)
          Returns a chunk of (at least) the specified size.
 Chunk JChunkFactory.newChunk()
          Returns a chunk of a default (small) size.
 Chunk JChunkFactory.newChunk(int size)
          Returns a chunk of (at least) the specified size.
 

Uses of Chunk in org.objectweb.jonathan.libs.resources.tcpip
 

Methods in org.objectweb.jonathan.libs.resources.tcpip with parameters of type Chunk
 void JConnectionMgr.Connection.receive(Chunk chunk, int to_read)
           
 void JConnectionMgr.Connection.emit(Chunk chunk)