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.soteradefense.dga.hbse.PartialDependency.java

/**
 * Represents a source vertex's dependency on a specific target vertex.
 * <p/>
 * For more information about pair dependencies and betweenness centrality see
 * "U. Brandes, A Faster Algorithm for Betweenness Centrality"
 */

From source file com.soteradefense.dga.hbse.PathData.java

/**
 * Message that can be passed between vertices.  Used for both shortest path computation and pair dependency
 * accumulation.  Some fields are only used in one of the two phases, or take on different meaning in the different phases.
 * <p/>
 * For more information on this method of calculation betweenness centrality see
 * "U. Brandes, A Faster Algorithm for Betweenness Centrality"

From source file com.soteradefense.dga.hbse.PivotList.java

public class PivotList implements Writable {

    private List<String> pivots;

    public PivotList() {
        super();

From source file com.soteradefense.dga.hbse.ShortestPathList.java

/**
 * Keeps Shortest path data for a single source vertex to a single target vertex.
 * <p/>
 * Maintains Shortest path, predecessors, and number of shortest paths from the source
 * to each predecessor.
 */

From source file com.soteradefense.dga.hbse.VertexData.java

/**
 * Stores all required data for a vertex
 * <ul>
 * <li>Map of Sources to ShortestPathLists (for shortest path phase)</li>
 * <li>Map of Sources to PartialDependency (for pair dependency phase)</li>
 * <li>approximated betweenness value</li>

From source file com.soteradefense.dga.louvain.giraph.LouvainMessage.java

/**
 * messages sent between vertices.
 */
public class LouvainMessage implements Writable {

    private String communityId;

From source file com.soteradefense.dga.louvain.giraph.LouvainNodeState.java

/**
 * The state of a vertex.
 */
public class LouvainNodeState implements Writable {

    private String community = "";

From source file com.soteradefense.dga.louvain.giraph.LouvainVertexWritable.java

/**
 * Writable class to represent community information for compressing a graph
 * by its communities.
 */
public class LouvainVertexWritable implements Writable {

From source file com.splicemachine.compactions.CompactionSplit.java

/**
 * Created by jyuan on 3/24/16.
 */
public class CompactionSplit extends InputSplit implements Writable {

    String[] locations;

From source file com.splicemachine.derby.hbase.AllocatedFilter.java

public class AllocatedFilter extends FilterBase implements Writable {
    @SuppressWarnings("unused")
    private static final long serialVersionUID = 2l;
    protected byte[] addressMatch;
    protected boolean foundMatch;