Uses of Interface
org.jgroups.blocks.Marshaller
-
Packages that use Marshaller Package Description org.jgroups.blocks Provides building blocks that are layered on top of channels. -
-
Uses of Marshaller in org.jgroups.blocks
Fields in org.jgroups.blocks declared as Marshaller Modifier and Type Field Description protected Marshaller
RequestCorrelator. marshaller
Possibility for an external marshaller to marshal/unmarshal responsesprotected Marshaller
RpcDispatcher. marshaller
Marshaller to marshall requests at the caller, unmarshal requests at the receiver(s), marshall responses at the receivers and unmarshall responses at the callerMethods in org.jgroups.blocks that return Marshaller Modifier and Type Method Description Marshaller
RequestCorrelator. getMarshaller()
Marshaller
RpcDispatcher. getMarshaller()
Methods in org.jgroups.blocks with parameters of type Marshaller Modifier and Type Method Description protected static MethodCall
RpcDispatcher. methodCallFromBuffer(byte[] buf, int offset, int length, Marshaller marshaller)
protected static Buffer
RpcDispatcher. methodCallToBuffer(MethodCall call, Marshaller marshaller)
protected void
MethodCall. readArgs(java.io.DataInput in, Marshaller marshaller)
void
MethodCall. readFrom(java.io.DataInput in, Marshaller marshaller)
protected static java.lang.Object
RequestCorrelator. replyFromBuffer(byte[] buf, int offset, int length, Marshaller marshaller)
protected static Buffer
RequestCorrelator. replyToBuffer(java.lang.Object obj, Marshaller marshaller)
RequestCorrelator
RequestCorrelator. setMarshaller(Marshaller m)
RpcDispatcher
RpcDispatcher. setMarshaller(Marshaller m)
protected void
MethodCall. writeArgs(java.io.DataOutput out, Marshaller marshaller)
void
MethodCall. writeTo(java.io.DataOutput out, Marshaller marshaller)
-