Package | Description |
---|---|
org.apache.avro.ipc |
Support for inter-process calls.
|
org.apache.avro.ipc.stats |
Utilities to collect and display IPC statistics.
|
Modifier and Type | Method and Description |
---|---|
void |
RPCPlugin.clientFinishConnect(RPCContext context)
Called on the client after the initial RPC handshake
|
void |
RPCPlugin.clientReceiveResponse(RPCContext context)
This method is invoked at the client after the call is executed,
and after the client receives the response
|
void |
RPCPlugin.clientSendRequest(RPCContext context)
This method is invoked at the client before it issues the RPC call.
|
void |
RPCPlugin.clientStartConnect(RPCContext context)
Called on the client before the initial RPC handshake to
setup any handshake metadata for this plugin
|
void |
RPCPlugin.serverConnecting(RPCContext context)
Called on the server during the RPC handshake
|
void |
RPCPlugin.serverReceiveRequest(RPCContext context)
This method is invoked at the RPC server when the request is received,
but before the call itself is executed
|
void |
RPCPlugin.serverSendResponse(RPCContext context)
This method is invoked at the server before the response is executed,
but before the response has been formulated
|
Modifier and Type | Method and Description |
---|---|
void |
StatsPlugin.clientReceiveResponse(RPCContext context) |
void |
StatsPlugin.clientSendRequest(RPCContext context) |
void |
StatsPlugin.serverReceiveRequest(RPCContext context) |
void |
StatsPlugin.serverSendResponse(RPCContext context) |
Copyright © 2009–2017 The Apache Software Foundation. All rights reserved.