Example usage for org.apache.hadoop.ipc VersionedProtocol interface-usage

List of usage examples for org.apache.hadoop.ipc VersionedProtocol interface-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.ipc VersionedProtocol interface-usage.

Usage

From source file com.chinamobile.bcbsp.workerAgentForStaff.WorkerAgentForStaffInterface.java

/**
 * WorkerAgentForStaffInterface.java.
 */
public interface WorkerAgentForStaffInterface extends VersionedProtocol {
    public static final long versionID = 0L;

From source file com.dasasian.chok.lucene.ILuceneServer.java

/**
 * The public interface to the back end LuceneServer. These are all the
 * methods that the Hadoop RPC will call.
 */
public interface ILuceneServer extends VersionedProtocol {

From source file com.dasasian.chok.mapfile.IMapFileServer.java

/**
 * Interface for the client calls that will arrive via Hadoop RPC.
 * <p>
 * This server looks up Text entries from MapFiles using Text keys.
 */
public interface IMapFileServer extends VersionedProtocol {

From source file com.dasasian.chok.node.IContentServer.java

/**
 * This describes the interaction between the general Node class and a specific
 * Chok server instance it is managing. The Node class talks to Zookeeper, and
 * manages the shards on disk. It tells the server when to start and stop using
 * the shards, and when to shut down.
 * <p>

From source file com.dasasian.chok.testutil.server.simpletest.ISimpleTestServer.java

/**
 * The public interface to the back end LuceneServer. These are all the
 * methods that the Hadoop RPC will call.
 */
public interface ISimpleTestServer extends VersionedProtocol {

From source file com.dasasian.chok.testutil.server.sleep.ISleepServer.java

/**
 * The public interface for the back end of a dummy server that just
 * sleeps for a while then returns null. Used for testing.
 */
public interface ISleepServer extends VersionedProtocol {

From source file com.datatorrent.stram.api.StreamingContainerUmbilicalProtocol.java

/**
 * Protocol that streaming node child process uses to contact its parent
 * (application master) process
 * <p>
 * <br>
 * All communication between child and parent is via this protocol.

From source file com.datatorrent.stram.LicensingProtocol.java

/**
 *
 * @since 0.9.4
 */
public interface LicensingProtocol extends VersionedProtocol {
    public static final long versionID = 201401310447L;

From source file com.wboard.common.protocol.ServerProtocol.java

/**
 * Interface (protocol) of Server used by Clients
 * @author Ben Kim
 * @see org.apache.hadoop.hbase.ipc.HRegionInterface
 */
public interface ServerProtocol extends VersionedProtocol {

From source file de.hpi.fgis.hdrs.ipc.ProtocolVersion.java

public interface ProtocolVersion extends VersionedProtocol {

    public static final long versionID = 1L;

}