Uses of Interface
com.tangosol.util.ByteSequence
Packages that use ByteSequence
Package
Description
The base package provides a number of classes to complement those in the java.lang package.
Contains classes providing cache persistence of serialized objects.
Contains classes related to the journaling services.
Contains classes related to J2SE 1.4 NIO functionality.
Contains various generic utilities.
-
Uses of ByteSequence in com.oracle.coherence.common.base
Methods in com.oracle.coherence.common.base with parameters of type ByteSequenceModifier and TypeMethodDescriptionstatic intFormatting.toCrc(ByteSequence seq) Calculate a CRC32 value from a ByteSequence.static intFormatting.toCrc(ByteSequence seq, int of, int cb, int nCrc) Continue to calculate a CRC32 value from a portion of a ByteSequence .static StringFormatting.toHexEscape(ByteSequence seq, int of, int cb) Convert a ByteSequence to a hex sequence of '0' + 'x' + 2 hex digits per byte. -
Uses of ByteSequence in com.tangosol.io
Subinterfaces of ByteSequence in com.tangosol.ioModifier and TypeInterfaceDescriptioninterfaceThe ReadBuffer interface represents an in-memory block of binary data, such as that represented by a byte[], a Binary object, or an NIO buffer.Classes in com.tangosol.io that implement ByteSequenceModifier and TypeClassDescriptionclassThe AbstractByteArrayReadBuffer abstract class is intended to serve as a base class for the following: the pre-existing Binary class a new byte[] based class that does not attempt to add the immutability aspect provided by the Binary class a new ByteBuffer based class that will work with Java NIOclassAbstract base implementation of the ReadBuffer interface.classA ReadBuffer on top of a byte array.classThe MultiBufferReadBuffer is a ReadBuffer implementation that presents a view across any number of underlying ReadBuffer objects, as if they were appended end-to-end into a single ReadBuffer.Methods in com.tangosol.io that return ByteSequenceModifier and TypeMethodDescriptionAbstractReadBuffer.subSequence(int ofStart, int ofEnd) Returns a newByteSequencethat is a subsequence of this sequence.ReadBuffer.subSequence(int ofStart, int ofEnd) Returns a newByteSequencethat is a subsequence of this sequence.Methods in com.tangosol.io with parameters of type ByteSequenceModifier and TypeMethodDescriptionstatic intAbstractReadBuffer.readPackedInt(ByteSequence bin, int of) Read an int value using a variable-length storage format as described byWriteBuffer.BufferOutput.writePackedInt(int)from the givenByteSequenceand offset.static intAbstractReadBuffer.readUnsignedByte(ByteSequence bin, int of) Read an unsigned byte value from the givenByteSequenceand offset. -
Uses of ByteSequence in com.tangosol.io.journal
Methods in com.tangosol.io.journal with parameters of type ByteSequenceModifier and TypeMethodDescriptionprotected longAbstractJournalRM.encodeTicket(ByteSequence bin) Encode a Binary into a "ticket". -
Uses of ByteSequence in com.tangosol.io.nio
Classes in com.tangosol.io.nio that implement ByteSequenceModifier and TypeClassDescriptionclassA ReadBuffer implementation on top of a Java NIO ByteBuffer. -
Uses of ByteSequence in com.tangosol.util
Classes in com.tangosol.util that implement ByteSequenceModifier and TypeClassDescriptionclassA simple base class for ByteSequence implementations.static classA naive ByteSequence that glues two ByteSequence instances together.static classA naive ByteSequence that represents a portion of another ByteSequence.final classA thread-safe immutable binary object.static classDecoratedMultiBufferReadBuffer is a MultiBufferWriteBuffer that represents a binary "decorated" value, and allows a more optimizedExternalizableHelper.getUndecorated(ReadBuffer)operation.Methods in com.tangosol.util that return ByteSequenceModifier and TypeMethodDescriptionAbstractByteSequence.AggregateByteSequence.subSequence(int ofStart, int ofEnd) Returns a newByteSequencethat is a subsequence of this sequence.AbstractByteSequence.subSequence(int ofStart, int ofEnd) Returns a newByteSequencethat is a subsequence of this sequence.ByteSequence.subSequence(int ofStart, int ofEnd) Returns a newByteSequencethat is a subsequence of this sequence.Methods in com.tangosol.util with parameters of type ByteSequenceModifier and TypeMethodDescriptionstatic booleanExternalizableHelper.isIntDecorated(ByteSequence buf) Check whether or not the specified ByteSequence is a representation of an IntDecoratedObject.static intBase.toCrc(ByteSequence seq) Calculate a CRC32 value from a ByteSequence.static intBase.toCrc(ByteSequence seq, int of, int cb, int nCrc) Continue to calculate a CRC32 value from a portion of a ByteSequence .static StringBase.toHexEscape(ByteSequence seq, int of, int cb) Convert a ByteSequence to a hex sequence of '0' + 'x' + 2 hex digits per byte.Constructors in com.tangosol.util with parameters of type ByteSequenceModifierConstructorDescriptionAggregateByteSequence(ByteSequence seqFirst, ByteSequence seqSecond) Construct an AggregateByteSequence from two ByteSequence objects.PartialByteSequence(ByteSequence seq, int of, int cb) Construct a PartialByteSequence from a ByteSequence.