Interface CDRStreamReader
-
public interface CDRStreamReaderInterface of an object that knows how to unmarshal a Java basic type or object from a CDR input stream. Implementations of this interface are specialized for particular types: anIntReaderis aCDRStreamReaderthat knows how to unmarshalints, aLongReaderis aCDRStreamReaderthat knows how to unmarshallongs, and so on.- Version:
- $Revision: 81018 $
- Author:
- Francisco Reverbel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectread(org.omg.CORBA_2_3.portable.InputStream in)Unmarshals a Java basic data type or object from a CDR input stream.
-
-
-
Method Detail
-
read
Object read(org.omg.CORBA_2_3.portable.InputStream in)
Unmarshals a Java basic data type or object from a CDR input stream.- Parameters:
in- the input stream- Returns:
- a basic data type (within a suitable wrapper instance) or object unmarshalled from the stream
-
-