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 net.sf.katta.lib.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 net.sf.katta.lib.mapfile.IMapFileServer.java

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

From source file net.sf.katta.node.IContentServer.java

/**
 * This describes the interaction between the general Node class and a specific
 * Katta 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.
 *

From source file net.sf.katta.util.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 org.apache.giraph.comm.CommunicationsInterface.java

/**
 * Basic interface for communication between workers.
 *
 * @param <I> Vertex id
 * @param <V> Vertex data
 * @param <E> Edge data

From source file org.apache.hama.bsp.BSPRPCProtocolVersion.java

/**
 * RPC Protocol version
 */
public interface BSPRPCProtocolVersion extends VersionedProtocol {

    /**

From source file org.apache.hama.ipc.HamaRPCProtocolVersion.java

/**
 * There is one version id for all the RPC interfaces. If any interface is
 * changed, the versionID must be changed here.
 */
public interface HamaRPCProtocolVersion extends VersionedProtocol {
    public static final long versionID = 1L;

From source file org.apache.hoya.api.HoyaClusterProtocol.java

/**
 * Cluster protocol. This can currently act as a versioned IPC
 * endpoint or be relayed via protobuf
 */
@KerberosInfo(serverPrincipal = HoyaXmlConfKeys.KEY_KERBEROS_PRINCIPAL)
public interface HoyaClusterProtocol extends VersionedProtocol {

From source file org.apache.nutch.searcher.RPCSearchBean.java

public interface RPCSearchBean extends SearchBean, VersionedProtocol {

}

From source file org.apache.nutch.searcher.RPCSegmentBean.java

public interface RPCSegmentBean extends SegmentBean, VersionedProtocol {

}