Uses of Enum Class
org.apache.hadoop.ipc.RPC.RpcKind

Packages that use RPC.RpcKind
Package
Description
Tools to help define network clients and servers.
  • Uses of RPC.RpcKind in org.apache.hadoop.ipc

    Methods in org.apache.hadoop.ipc that return RPC.RpcKind
    Modifier and Type
    Method
    Description
    RPC.RpcKind.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static RPC.RpcKind[]
    RPC.RpcKind.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in org.apache.hadoop.ipc with parameters of type RPC.RpcKind
    Modifier and Type
    Method
    Description
    Client.call(RPC.RpcKind rpcKind, Writable rpcRequest, org.apache.hadoop.ipc.Client.ConnectionId remoteId, AtomicBoolean fallbackToSimpleAuth)
    Make a call, passing rpcRequest, to the IPC server defined by remoteId, returning the rpc respond.
    Client.call(RPC.RpcKind rpcKind, Writable rpcRequest, org.apache.hadoop.ipc.Client.ConnectionId remoteId, AtomicBoolean fallbackToSimpleAuth, org.apache.hadoop.ipc.AlignmentContext alignmentContext)
     
    abstract Writable
    Server.call(RPC.RpcKind rpcKind, String protocol, Writable param, long receiveTime)
    Called for each call.
    static org.apache.hadoop.ipc.RPC.RpcInvoker
    Server.getRpcInvoker(RPC.RpcKind rpcKind)
     
    protected org.apache.hadoop.ipc.RPC.RpcInvoker
     
    static void
    Server.registerProtocolEngine(RPC.RpcKind rpcKind, Class<? extends Writable> rpcRequestWrapperClass, org.apache.hadoop.ipc.RPC.RpcInvoker rpcInvoker)
    Register a RPC kind and the class to deserialize the rpc request.