-
- All Known Subinterfaces:
CodecFactory
public interface CodecFactoryOperations
Codecs
are obtained from theCodecFactory
. TheCodecFactory
is obtained through a call toORB.resolve_initial_references( "CodecFactory" )
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Codec
create_codec(Encoding enc)
Create aCodec
of the given encoding.
-
-
-
Method Detail
-
create_codec
Codec create_codec(Encoding enc) throws UnknownEncoding
Create aCodec
of the given encoding.- Parameters:
enc
- The encoding for which to create aCodec
.- Returns:
- A
Codec
obtained with the given encoding. - Throws:
UnknownEncoding
- thrown if this factory cannot create aCodec
of the given encoding.
-
-