Uses of Class
org.apache.avro.ipc.Transceiver
Package
Description
Support for inter-process calls.
-
Uses of Transceiver in org.apache.avro.ipc
Modifier 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.Modifier 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.Modifier and TypeMethodDescriptionResponder.respond
(List<ByteBuffer> buffers, Transceiver connection) Called by a server to deserialize a request, compute and serialize a response or error. -
Uses of Transceiver in org.apache.avro.ipc.generic
ModifierConstructorDescriptionGenericRequestor
(Protocol protocol, Transceiver transceiver) GenericRequestor
(Protocol protocol, Transceiver transceiver, GenericData data) -
Uses of Transceiver in org.apache.avro.ipc.netty
-
Uses of Transceiver in org.apache.avro.ipc.reflect
Modifier 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.ModifierConstructorDescriptionReflectRequestor
(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
Modifier 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.ModifierConstructorDescriptionSpecificRequestor
(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.