List of usage examples for java.io Externalizable interface-usage
From source file com.splicemachine.derby.stream.output.direct.DirectTableWriterBuilder.java
/** * @author Scott Fines * Date: 1/13/16 */ public abstract class DirectTableWriterBuilder implements Externalizable, DataSetWriterBuilder { protected long destConglomerate;
From source file com.conwet.silbops.msg.UnsubscribeMsg.java
/** * * @author sortega */ public class UnsubscribeMsg extends Message implements Externalizable {
From source file org.apache.camel.component.bean.BeanInvocation.java
/** * Invocation of beans that can handle being serialized. */ public class BeanInvocation implements Externalizable { private static final transient Log LOG = LogFactory.getLog(BeanInvocation.class); private Object[] args;
From source file com.aol.advertising.qiao.util.cache.ValueWrapper.java
public class ValueWrapper<V> implements Externalizable { private static final long serialVersionUID = -1703117639197898259L; private static final byte TRUE = 0x01; private static final byte FALSE = 0x00; protected V value;
From source file BinaryHeapQueue.java
public class BinaryHeapQueue implements Queue, Externalizable { /** The default capacity for a binary heap. */ private final static int DEFAULT_CAPACITY = 13; /** The comparator used to order the elements */ private Comparator comparator;
From source file com.splicemachine.tutorials.tsdbanalytics.AggregateFunction.java
/** * This converts ImpressionLog to Pair of <PublisherKey, AggregateLog> * * @author Jyotsna Ramineni */ public class AggregateFunction
From source file com.conwet.silbops.msg.UnadvertiseMsg.java
/** * * @author sergio */ public class UnadvertiseMsg extends Message implements Externalizable {
From source file org.hyperic.hq.transport.util.AsynchronousInvocationHandler.java
/** * The handler for making asynchronous invocations. If the invocations must * be guaranteed, then any state associated with the invocation must be * made {@link Externalizable}. */ public abstract class AsynchronousInvocationHandler implements Runnable, Externalizable {
From source file xbird.util.collections.IndexedSet.java
/**
*
* <DIV lang="en"></DIV>
* <DIV lang="ja"></DIV>
*
* @author Makoto YUI (yuin405+xbird@gmail.com)
From source file com.splicemachine.derby.stream.output.delete.DeleteTableWriterBuilder.java
/** * Created by jleach on 5/6/15. */ public abstract class DeleteTableWriterBuilder implements Externalizable, DataSetWriterBuilder { protected long heapConglom; protected TxnView txn;