Package com.oracle.coherence.grpc
Class RequestHolder.UpConverter
- java.lang.Object
-
- com.oracle.coherence.grpc.RequestHolder.UpConverter
-
-
Field Summary
Fields Modifier and Type Field Description protected Serializer
f_serializerFrom
TheSerializer
used to convert theBinary
to object form.protected Serializer
f_serializerTo
TheSerializer
used to convert the object to aBinary
.
-
Constructor Summary
Constructors Modifier Constructor Description protected
UpConverter(Serializer serializerFrom, Serializer serializerTo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Binary
convert(Binary binary)
Convert the passed object to another object.
-
-
-
Field Detail
-
f_serializerFrom
protected final Serializer f_serializerFrom
TheSerializer
used to convert theBinary
to object form.
-
f_serializerTo
protected final Serializer f_serializerTo
TheSerializer
used to convert the object to aBinary
.
-
-
Constructor Detail
-
UpConverter
protected UpConverter(Serializer serializerFrom, Serializer serializerTo)
Construct theConverter
that converts from aBinary
serialized in one format to aBinary
serialized in a different format.- Parameters:
serializerFrom
- theSerializer
to convert fromserializerTo
- theSerializer
to serialize to
-
-