Uses of Class
org.apache.avro.ipc.Transceiver
Packages that use Transceiver
Package
Description
Support for inter-process calls.
-
Uses of Transceiver in org.apache.avro.ipc
Subclasses of Transceiver in org.apache.avro.ipcModifier and TypeClassDescriptionclass
A datagram-basedTransceiver
implementation.class
An HTTP-basedTransceiver
implementation.class
Implementation of IPC that remains in process.class
ATransceiver
that usesjavax.security.sasl
for authentication and encryption.class
Deprecated.Methods in org.apache.avro.ipc that return TransceiverModifier and TypeMethodDescriptionstatic Transceiver
Ipc.createTransceiver
(URI uri) Create a clientTransceiver
connecting to the provided URI.Requestor.getTransceiver()
protected Transceiver
SaslSocketServer.getTransceiver
(SocketChannel channel) protected Transceiver
SocketServer.getTransceiver
(SocketChannel channel) Deprecated.Creates an appropriateTransceiver
for this server.Methods in org.apache.avro.ipc with parameters of type TransceiverModifier and TypeMethodDescriptionResponder.respond
(List<ByteBuffer> buffers, Transceiver connection) Called by a server to deserialize a request, compute and serialize a response or error.Constructors in org.apache.avro.ipc with parameters of type Transceiver -
Uses of Transceiver in org.apache.avro.ipc.generic
Constructors in org.apache.avro.ipc.generic with parameters of type TransceiverModifierConstructorDescriptionGenericRequestor
(Protocol protocol, Transceiver transceiver) GenericRequestor
(Protocol protocol, Transceiver transceiver, GenericData data) -
Uses of Transceiver in org.apache.avro.ipc.netty
Subclasses of Transceiver in org.apache.avro.ipc.netty -
Uses of Transceiver in org.apache.avro.ipc.reflect
Methods in org.apache.avro.ipc.reflect with parameters of type TransceiverModifier and TypeMethodDescriptionstatic <T> T
ReflectRequestor.getClient
(Class<T> iface, Transceiver transceiver) Create a proxy instance whose methods invoke RPCs.static <T> T
ReflectRequestor.getClient
(Class<T> iface, Transceiver transceiver, ReflectData reflectData) Create a proxy instance whose methods invoke RPCs.Constructors in org.apache.avro.ipc.reflect with parameters of type TransceiverModifierConstructorDescriptionReflectRequestor
(Class<?> iface, Transceiver transceiver) ReflectRequestor
(Class<?> iface, Transceiver transceiver, ReflectData data) protected
ReflectRequestor
(Protocol protocol, Transceiver transceiver) ReflectRequestor
(Protocol protocol, Transceiver transceiver, ReflectData data) -
Uses of Transceiver in org.apache.avro.ipc.specific
Methods in org.apache.avro.ipc.specific with parameters of type TransceiverModifier and TypeMethodDescriptionstatic <T> T
SpecificRequestor.getClient
(Class<T> iface, Transceiver transceiver) Create a proxy instance whose methods invoke RPCs.static <T> T
SpecificRequestor.getClient
(Class<T> iface, Transceiver transceiver, SpecificData data) Create a proxy instance whose methods invoke RPCs.Constructors in org.apache.avro.ipc.specific with parameters of type TransceiverModifierConstructorDescriptionSpecificRequestor
(Class<?> iface, Transceiver transceiver) SpecificRequestor
(Class<?> iface, Transceiver transceiver, SpecificData data) protected
SpecificRequestor
(Protocol protocol, Transceiver transceiver) SpecificRequestor
(Protocol protocol, Transceiver transceiver, SpecificData data)
SaslSocketTransceiver
instead.