view src/main/java/net/borgac/clusterrpc/client/Request.java @ 7:0c24a0ee0c34

Lay groundwork for filter stack
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 24 Sep 2016 16:47:46 +0200
parents
children b99a9821115c
line wrap: on
line source

package net.borgac.clusterrpc.client;

import proto.Rpc;

/**
 * An RPC request issued by a client application.
 *
 * It goes through the stack of filters before being sent off to the server.
 *
 * @author lbo
 */
public class Request {

    private Rpc.RPCRequest.Builder rpcRequest;

}