Example usage for java.io Externalizable interface-usage

List of usage examples for java.io Externalizable interface-usage

Introduction

In this page you can find the example usage for java.io Externalizable interface-usage.

Usage

From source file org.mrgeo.hdfs.tile.Splits.java

public abstract class Splits implements Externalizable {
    @SuppressFBWarnings(value = "UWF_NULL_FIELD", justification = "Set in child classes")
    SplitInfo[] splits = null;

    public static class SplitException extends IOException {
        static final long serialVersionUID = 7818375828146090155L;

From source file com.talis.storage.s3.ExternalizableS3Object.java

public class ExternalizableS3Object extends S3Object implements Externalizable {

    private static final transient Logger LOG = LoggerFactory.getLogger(ExternalizableS3Object.class);

    @Override
    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {

From source file com.adaptris.core.interceptor.MetadataStatistic.java

/**
 * A metadata statistic stored by concrete implementations {@link MetadataMetricsInterceptorImpl}
 * 
 * @config interceptor-metadata-statistic
 */
@XStreamAlias("interceptor-metadata-statistic")

From source file ca.uhn.fhir.model.api.BasePrimitive.java

public abstract class BasePrimitive<T> extends BaseIdentifiableElement
        implements IPrimitiveDatatype<T>, Externalizable {

    private T myCoercedValue;
    private String myStringValue;

From source file com.delphix.session.impl.frame.SerialNumber.java

/**
 * This describes the serial number as defined in RFC 1982.
 *
 * Serial numbers are formed from non-negative integers from a finite subset of the range of all integer values.  The
 * lowest integer in every subset used for this purpose is zero, the maximum is always one less than a power of two.
 *

From source file com.splicemachine.derby.stream.output.PipelineWriterBuilder.java

/**
 * Created by jyuan on 10/17/15.
 */
public class PipelineWriterBuilder implements Externalizable {

    private long heapConglom;

From source file org.taverna.server.master.common.Workflow.java

/**
 * Encapsulation of a T2flow document.
 * 
 * @author dkf
 */
@XmlRootElement(name = "workflow")

From source file org.wso2.carbon.ml.core.spark.models.MLMatrixFactorizationModel.java

/**
 * Wraps Spark's {@link MatrixFactorizationModel}
 */
public class MLMatrixFactorizationModel implements Externalizable {

    private static final long serialVersionUID = 186767859324000308L;

From source file org.ihtsdo.otf.tcc.ddo.TimeReference.java

/**
 *
 * @author kec
 */
public class TimeReference implements Externalizable {
    public static final long serialVersionUID = 1;

From source file com.aol.advertising.qiao.util.cache.PersistentValueWrapper.java

public class PersistentValueWrapper<K, V> extends ValueWrapper<V> implements Externalizable {

    protected K key;
    protected long expirationTime;

    /**