Example usage for org.apache.hadoop.io Writable interface-usage

List of usage examples for org.apache.hadoop.io Writable interface-usage

Introduction

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

Usage

From source file com.chinamobile.bcbsp.graph.EdgeManager.java

/**
 * Edge manager. Edges data default is on disk, with this can load edges data
 * from disk. After compute, edge data save into disk.
 */
public class EdgeManager implements Writable {
    /** class logger. */

From source file com.chinamobile.bcbsp.graph.VertexManager.java

/**
 * Vertex manager. Vertices data default is on disk, with this can load vertices
 * data from disk. After compute, vertex data save into disk.
 */
public class VertexManager implements Writable {
    /** class logger. */

From source file com.chinamobile.bcbsp.io.db.TableSplit.java

/**
 * A table split corresponds to a key range (low, high). All references to row
 * below refer to the key of the row.
 */
public class TableSplit extends InputSplit implements Writable, Comparable<TableSplit> {
    /** The name of the current table. */

From source file com.chinamobile.bcbsp.io.mysql.DBInputSplit.java

/**
 * A MySQL split corresponds to a key range (low, high). All references to row
 * below refer to the key of the row.
 */
public class DBInputSplit extends InputSplit implements Writable, Comparable<DBInputSplit> {
    /** The split end */

From source file com.chinamobile.bcbsp.io.titan.TitanTableSplit.java

/**
 * TitanTableSplit describe the table split in Titan database.
 * @author Zhicheng Liu 2013/4/25
 */
public class TitanTableSplit extends InputSplit implements Writable, Comparable<TitanTableSplit> {
    /**input table name*/

From source file com.chinamobile.bcbsp.sync.SuperStepCommand.java

/**
 * SuperStepCommand SuperStepCommand maintains the actions which JobInProgress
 * generates and the aggregation information
 * 
 * @author
 * @version

From source file com.chinamobile.bcbsp.sync.SuperStepReportContainer.java

/**
 * SuperStepReportContainer This class is a container which includes all
 * information used during SuperStep Synchronization. Such as the aggregation
 * values and the synchronization stage.
 */
public class SuperStepReportContainer implements Writable {

From source file com.chinamobile.bcbsp.util.JobProfile.java

/**
 * JobProfile A JobProfile tracks job's status.
 */
public class JobProfile implements Writable {
    /** userid of the person who submitted the job. */
    private String user;

From source file com.chinamobile.bcbsp.util.JobStatus.java

/**
 * JobStatus Describes the current status of a job.
 */
public class JobStatus implements Writable, Cloneable {
    /** Define LOG for outputting log information */
    public static final Log LOG = LogFactory.getLog(JobStatus.class);

From source file com.chinamobile.bcbsp.util.StaffStatus.java

/**
 * StaffStatus Describes the current status of a staff. This is not intended to
 * be a comprehensive piece of data.
 */
public class StaffStatus implements Writable, Cloneable {
    /** Define LOG for outputting log information */