All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sdklite.rpc.RpcResponse Maven / Gradle / Ivy

package com.sdklite.rpc;

import java.io.IOException;

/**
 * Represents the response RPC message
 * 
 * @author johnsonlee
 *
 */
public interface RpcResponse extends RpcMessage {

    @Override
    Builder newBuilder();

    /**
     * Returns the content of RPC response
     * 
     * @throws IOException
     */
     T getContent() throws IOException;

    /**
     * Represents the builder of {@link RpcResponse}
     * 
     * @author johnsonlee
     *
     */
    public interface Builder extends RpcMessage.Builder {

        @Override
        RpcResponse build();

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy