Uses of Class
com.tangosol.util.Binary

Packages that use Binary
Package
Description
The base package provides a number of classes to complement those in the java.lang package.
Low-level utilities for Coherence gRPC server and client implementation.
The Netty based Coherence gRPC server implementation.
 
Contains Federation conflict resolution interfaces.
Contains classes related to REST marshalling.
Contains packages and classes related to the Coherence REST API utilities.
Contains classes related to the HTTP Session Replication Module.
Contains classes providing cache persistence of serialized objects.
Contains Sleepycat Berkeley DB BinaryStore implementation classes.
Contains classes related to the journaling services.
Contains classes related to J2SE 1.4 NIO functionality.
Contains classes related to POF serialization and deserialization.
Contains classes related to POF stream navigation and manipulation.
Contains basic cluster interfaces and factories.
Contains classes providing various caching strategies.
Contains classes that providing topic entities for publish/subscribe messaging.
Contains classes and helpers for implementing various types of persistence.
Contains classes providing basic XML related functionality.
Contains various generic utilities.
  • Uses of Binary in com.oracle.coherence.common.base

    Modifier and Type
    Method
    Description
    static Binary
    Randoms.getRandomBinary(int cbMin, int cbMax)
    Generates a random-length Binary within the length bounds provided whose contents are random bytes.
    static Binary
    Randoms.getRandomBinary(int cbMin, int cbMax, byte... abHead)
    Generates a random-length Binary including abHead at the head of the Binary, in addition to random bytes within the length bounds provided.
  • Uses of Binary in com.oracle.coherence.grpc

    Methods in com.oracle.coherence.grpc that return Binary
    Modifier and Type
    Method
    Description
    static Binary
    BinaryHelper.toBinary(com.google.protobuf.ByteString bytes)
    Convert a ByteString to a Binary.
    static Binary
    BinaryHelper.toBinary(com.google.protobuf.BytesValue bytes)
    Convert a BytesValue to a Binary.
    Methods in com.oracle.coherence.grpc with parameters of type Binary
    Modifier and Type
    Method
    Description
    static <T> T
    BinaryHelper.fromBinary(Binary binary, Serializer serializer)
    Deserialize a serialized Binary.
    static com.google.protobuf.ByteString
    BinaryHelper.toByteString(Binary binary)
    Convert a Binary to a ByteString.
    static com.google.protobuf.BytesValue
    BinaryHelper.toBytesValue(Binary binary)
    Convert a Binary to a BytesValue.
    static com.google.protobuf.ByteString
    BinaryHelper.toKeyByteString(Binary bin, Object obj, Serializer serializer)
     
  • Uses of Binary in com.oracle.coherence.grpc.proxy

    Methods in com.oracle.coherence.grpc.proxy that return types with arguments of type Binary
    Modifier and Type
    Method
    Description
    protected CompletionStage<CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.ContainsEntryRequest,Binary>>
    NettyNamedCacheService.containsEntry(CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.ContainsEntryRequest,Void> holder)
    Execute the ContainsEntryRequest request and return a CompletionStage that will complete when the AsyncNamedCache request completes and will contain a CacheRequestHolder holding the result of the contains entry request as a serialized Boolean.
    NettyNamedCacheService.convertKeys(CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.GetAllRequest,Void> holder)
    Convert the keys for a GetAllRequest from the request's serialization format to the cache's serialization format.
    protected CompletionStage<CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.GetRequest,Binary>>
    NettyNamedCacheService.get(CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.GetRequest,Void> holder)
    Execute the GetRequest request and return a CompletionStage that will complete when the AsyncNamedCache request completes and will contain a CacheRequestHolder holding the result of the GetRequest request as a serialized Boolean.
    protected CompletionStage<CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.InvokeRequest,Binary>>
    NettyNamedCacheService.invoke(CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.InvokeRequest,Void> holder)
    Execute the InvokeRequest request and return a CompletionStage that will complete when the AsyncNamedCache request completes and will contain a CacheRequestHolder holding the result of the InvokeRequest request as a serialized Boolean.
    NettyNamedCacheService.remove(CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.RemoveRequest,Void> holder)
    Execute a RemoveRequest request.
    NettyNamedCacheService.replace(CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.ReplaceRequest,Void> holder)
    Execute a ReplaceRequest request.
    NettyNamedCacheService.replaceMapping(CacheRequestHolder<com.oracle.coherence.grpc.messages.cache.v0.ReplaceMappingRequest,Void> holder)
    Execute a ReplaceMappingRequest request.
  • Uses of Binary in com.oracle.coherence.grpc.v0

    Fields in com.oracle.coherence.grpc.v0 with type parameters of type Binary
    Modifier and Type
    Field
    Description
    protected final AsyncNamedCache<Binary,Binary>
    CacheRequestHolder.f_asyncNamedCache
    The AsyncNamedCache that the request executes against.
    protected final AsyncNamedCache<Binary,Binary>
    CacheRequestHolder.f_asyncNamedCache
    The AsyncNamedCache that the request executes against.
    protected final Converter<Object,Binary>
    RequestHolder.DownConverter.f_converter
    The Converter used to convert the object into a Binary.
    RequestHolder.m_converterDown
    The converter used to convert between a Binary serialized in the request format to a Binary serialized in the cache format.
    RequestHolder.m_converterDown
    The converter used to convert between a Binary serialized in the request format to a Binary serialized in the cache format.
    CacheRequestHolder.m_converterKeyDown
    The converter used to convert between a Binary key serialized in the request format to a Binary key serialized in the cache format.
    CacheRequestHolder.m_converterKeyDown
    The converter used to convert between a Binary key serialized in the request format to a Binary key serialized in the cache format.
    RequestHolder.m_converterUp
    The converter used to convert between a Binary serialized in the cache format to a Binary serialized in the request format.
    RequestHolder.m_converterUp
    The converter used to convert between a Binary serialized in the cache format to a Binary serialized in the request format.
    Methods in com.oracle.coherence.grpc.v0 that return Binary
    Modifier and Type
    Method
    Description
    RequestHolder.DownConverter.convert(Binary binary)
     
    RequestHolder.UpConverter.convert(Binary binary)
     
    RequestHolder.convertDown(com.google.protobuf.ByteString bytes)
    Convert the ByteString data serialized in the request format to a Binary serialized in the cache's serialization format.
    RequestHolder.convertDown(Binary binary)
    Convert the Binary data serialized in the request format to a Binary serialized in the cache's serialization format.
    RequestHolder.convertDown(Supplier<com.google.protobuf.ByteString> supplier)
    Convert the ByteString data serialized in the request format to a Binary serialized in the cache's serialization format.
    CacheRequestHolder.convertKeyDown(com.google.protobuf.ByteString bytes)
    Convert the ByteString data serialized in the request format to a Binary key serialized in the cache's serialization format.
    CacheRequestHolder.convertKeyDown(Binary binary)
    Convert the Binary data serialized in the request format to a Binary key serialized in the cache's serialization format.
    RequestHolder.convertUp(Binary binary)
    Convert a Binary in the cache's serialization format to a Binary in the request's serialization format.
    Methods in com.oracle.coherence.grpc.v0 that return types with arguments of type Binary
    Modifier and Type
    Method
    Description
    CacheRequestHolder.binaryConsumer(io.grpc.stub.StreamObserver<com.google.protobuf.BytesValue> observer)
    Return a Consumer of Binary instances that sends the binary to the specified StreamObserver.
    CacheRequestHolder.createConverterDown()
     
    protected abstract Converter<Object,Binary>
    RequestHolder.createConverterDown()
    Create the Converter to use to convert from Object form to internal Binary form.
    RequestHolder.ensureConverterDown()
    Obtain the Converter used to convert between the request format and the cache format; creating the Converter if required.
    RequestHolder.ensureConverterDown()
    Obtain the Converter used to convert between the request format and the cache format; creating the Converter if required.
    CacheRequestHolder.ensureConverterKeyDown()
    Obtain the Converter used to convert between the request format keys and the cache format keys; creating the Converter if required.
    CacheRequestHolder.ensureConverterKeyDown()
    Obtain the Converter used to convert between the request format keys and the cache format keys; creating the Converter if required.
    RequestHolder.ensureConverterUp()
    Obtain the Converter used to convert between the cache format and the request format; creating the Converter if required.
    RequestHolder.ensureConverterUp()
    Obtain the Converter used to convert between the cache format and the request format; creating the Converter if required.
    Consumer<Map.Entry<? extends Binary,? extends Binary>>
    CacheRequestHolder.entryConsumer(io.grpc.stub.StreamObserver<com.oracle.coherence.grpc.messages.cache.v0.Entry> observer)
    Return a Consumer of binary Map.Entry instances that sends the entries to the specified StreamObserver.
    Consumer<Map.Entry<? extends Binary,? extends Binary>>
    CacheRequestHolder.entryConsumer(io.grpc.stub.StreamObserver<com.oracle.coherence.grpc.messages.cache.v0.Entry> observer)
    Return a Consumer of binary Map.Entry instances that sends the entries to the specified StreamObserver.
    CacheRequestHolder.getAsyncCache()
    Obtain the AsyncNamedCache that the request executes on.
    CacheRequestHolder.getAsyncCache()
    Obtain the AsyncNamedCache that the request executes on.
    CacheRequestHolder.getCache()
    Obtain the NamedCache that the request executes on.
    CacheRequestHolder.getCache()
    Obtain the NamedCache that the request executes on.
    Methods in com.oracle.coherence.grpc.v0 with parameters of type Binary
    Modifier and Type
    Method
    Description
    RequestHolder.DownConverter.convert(Binary binary)
     
    RequestHolder.UpConverter.convert(Binary binary)
     
    RequestHolder.convertDown(Binary binary)
    Convert the Binary data serialized in the request format to a Binary serialized in the cache's serialization format.
    CacheRequestHolder.convertKeyDown(Binary binary)
    Convert the Binary data serialized in the request format to a Binary key serialized in the cache's serialization format.
    RequestHolder.convertUp(Binary binary)
    Convert a Binary in the cache's serialization format to a Binary in the request's serialization format.
    <T> T
    RequestHolder.deserialize(Binary binary)
    Obtain the deserialized Binary value using the cache's serializer.
    com.google.protobuf.BytesValue
    RequestHolder.deserializeToBytesValue(Binary binary)
    Convert the Binary serialized in the cache's serialization format to a BytesValue serialized in the request's serialization format.
    <T> T
    RequestHolder.fromBinary(Binary binary)
    Obtain the value deserialized from the specified Binary using the cache's serializer.
    com.google.protobuf.ByteString
    RequestHolder.toByteString(Binary binary)
    Convert the Binary serialized in the cache's serialization format to a ByteString serialized in the request's serialization format.
    com.google.protobuf.BytesValue
    RequestHolder.toBytesValue(Binary binary)
    Convert the Binary serialized in the cache's serialization format to a BytesValue serialized in the request's serialization format.
    com.oracle.coherence.grpc.messages.cache.v0.Entry
    RequestHolder.toEntry(Binary binKey, Binary binValue)
    Convert a Map.Entry of Binary key and value serialized in the cache's serialization format into an Entry with a key and value serialized in the request's serialization format.
    com.oracle.coherence.grpc.messages.cache.v0.OptionalValue
    RequestHolder.toOptionalValue(Binary binary)
    Convert a Binary serialized with the cache's serializer to an OptionalValue containing an optional Binary serialized with the request's serializer.
    Method parameters in com.oracle.coherence.grpc.v0 with type arguments of type Binary
    Modifier and Type
    Method
    Description
    com.oracle.coherence.grpc.messages.cache.v0.EntryResult
    RequestHolder.toEntryResult(Map.Entry<Binary,Binary> entry)
    Convert a Map.Entry of Binary key and value serialized in the cache's serialization format into an EntryResult with a key and value serialized in the request's serialization format.
    com.oracle.coherence.grpc.messages.cache.v0.EntryResult
    RequestHolder.toEntryResult(Map.Entry<Binary,Binary> entry)
    Convert a Map.Entry of Binary key and value serialized in the cache's serialization format into an EntryResult with a key and value serialized in the request's serialization format.
    Constructor parameters in com.oracle.coherence.grpc.v0 with type arguments of type Binary
    Modifier
    Constructor
    Description
     
    CacheRequestHolder(Req request, AsyncNamedCache<Binary,Binary> cache, Supplier<NamedCache<?,?>> cacheSupplier, String sFormat, Serializer serializer, Executor executor)
     
    CacheRequestHolder(Req request, AsyncNamedCache<Binary,Binary> cache, Supplier<NamedCache<?,?>> cacheSupplier, String sFormat, Serializer serializer, Executor executor)
    protected
    DownConverter(Serializer serializer, Converter<Object,Binary> converter)
    Construct the Converter that converts from a Binary serialized in one format to a Binary key serialized in a different format.
  • Uses of Binary in com.tangosol.coherence.federation

    Methods in com.tangosol.coherence.federation that return types with arguments of type Binary
    Modifier and Type
    Method
    Description
    ChangeRecord.getBinaryChangeRecord()
    Obtain a Binary representation of the ChangeRecord, with the key and values in Binary format.
    ChangeRecord.getBinaryChangeRecord()
    Obtain a Binary representation of the ChangeRecord, with the key and values in Binary format.
  • Uses of Binary in com.tangosol.coherence.rest.io

    Methods in com.tangosol.coherence.rest.io that return Binary
    Modifier and Type
    Method
    Description
    BinaryMarshaller.unmarshal(InputStream in, javax.ws.rs.core.MediaType mediaType)
     
    Methods in com.tangosol.coherence.rest.io with parameters of type Binary
    Modifier and Type
    Method
    Description
    void
    BinaryMarshaller.marshal(Binary value, OutputStream out, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders)
     
  • Uses of Binary in com.tangosol.coherence.rest.util

    Modifier and Type
    Field
    Description
    protected Binary
    StaticContent.m_binContent
     
    Modifier and Type
    Method
    Description
    StaticContent.getContent()
    Return content as Binary.
    Constructors in com.tangosol.coherence.rest.util with parameters of type Binary
    Modifier
    Constructor
    Description
     
    StaticContent(Binary binContent, String sMediaType)
    Construct StaticContent instance.
  • Uses of Binary in com.tangosol.coherence.servlet

    Methods in com.tangosol.coherence.servlet that return Binary
    Modifier and Type
    Method
    Description
    protected Binary
    OptimizedHolder.ensureInternalBinary()
    Obtain the non-null internally managed binary value.
    protected Binary
    SplittableHolder.ensureInternalBinary()
    Obtain the non-null internally managed binary value.
    OptimizedHolder.getBinary()
    Obtain the binary form of the value.
    protected Binary
    SplittableHolder.getExternalBinary()
    Obtain the binary form of the value from the external cache.
    protected Binary
    OptimizedHolder.getInternalBinary()
    Obtain the internally managed binary value.
    protected Binary
    OptimizedHolder.readBinary(DataInput in)
    Read the binary value.
    protected Binary
    SplittableHolder.readBinary(DataInput in)
    Read the binary value.
    protected Binary
    OptimizedHolder.serializeValue(Object o)
    Take the passed object and turn it into a Binary value.
    Methods in com.tangosol.coherence.servlet with parameters of type Binary
    Modifier and Type
    Method
    Description
    protected Object
    OptimizedHolder.deserializeValue(Binary bin)
    Take the Binary form of the attribute value and turn it into the object value.
    protected boolean
    SplittableHolder.isExternalDesirable(Binary binValue)
    Decide whether or not this holder will choose to store the passed binary value in its external storage.
    protected void
    SplitHttpSessionModel.setExternalBinary(Object oKey, Binary binValue)
    Adds this binary value to the temporary map for flushing.
    protected void
    SplittableHolder.setExternalBinary(Binary binValue)
    Store the binary form of the value in the external cache.
    protected void
    OptimizedHolder.setInternalBinary(Binary binValue)
    Store the internally managed binary value.
  • Uses of Binary in com.tangosol.io

    Fields in com.tangosol.io declared as Binary
    Modifier and Type
    Field
    Description
    protected static Binary
    DecorationOnlyDeltaCompressor.BIN_DECO_ONLY
    A place-holder Binary value used by the compressor to indicate a decoration-only update.
    protected static final Binary
    AsyncBinaryStore.DELETED
    A special token that is used to signify a queued erase operation.
    protected static final Binary
    BinaryDeltaCompressor.DELTA_TRUNCATE
    A delta value that indicates an empty new value.
    protected Binary
    SimpleEvolvable.m_binFutureData
    Future data.
    static final Binary
    AbstractReadBuffer.NO_BINARY
    An empty Binary object.
    static final Binary
    AbstractWriteBuffer.NO_BINARY
    An empty Binary object.
    protected static final Binary
    BinaryDeltaCompressor.NO_BINARY
    An empty Binary object.
    Methods in com.tangosol.io that return Binary
    Modifier and Type
    Method
    Description
    AbstractEvolvable.getFutureData()
    Return all the unknown remainder of the data stream from which this object was deserialized.
    Evolvable.getFutureData()
    Return all the unknown remainder of the data stream from which this object was deserialized.
    SimpleEvolvable.getFutureData()
    Return all the unknown remainder of the data stream from which this object was deserialized.
    abstract Binary
    AbstractBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    AsyncBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    BinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    AbstractByteArrayReadBuffer.toBinary()
    Return a new Binary object that holds the complete contents of this ReadBuffer.
    AbstractByteArrayReadBuffer.toBinary(int of, int cb)
    Return a Binary object that holds the specified portion of this ReadBuffer.
    AbstractReadBuffer.toBinary()
    Return a new Binary object that holds the complete contents of this ReadBuffer.
    AbstractReadBuffer.toBinary(int of, int cb)
    Return a Binary object that holds the specified portion of this ReadBuffer.
    AbstractWriteBuffer.toBinary()
    Returns a new Binary object that holds the complete contents of this WriteBuffer.
    ByteArrayWriteBuffer.toBinary()
    Returns a new Binary object that holds the complete contents of this WriteBuffer.
    DelegatingWriteBuffer.toBinary()
    Returns a new Binary object that holds the complete contents of this WriteBuffer.
    MultiBufferReadBuffer.toBinary(int of, int cb)
    Return a Binary object that holds the specified portion of this ReadBuffer.
    MultiBufferWriteBuffer.toBinary()
    Returns a new Binary object that holds the complete contents of this WriteBuffer.
    ReadBuffer.toBinary()
    Return a new Binary object that holds the complete contents of this ReadBuffer.
    ReadBuffer.toBinary(int of, int cb)
    Return a Binary object that holds the specified portion of this ReadBuffer.
    WriteBuffer.toBinary()
    Returns a new Binary object that holds the complete contents of this WriteBuffer.
    Methods in com.tangosol.io that return types with arguments of type Binary
    Modifier and Type
    Method
    Description
    BinaryStore.keys()
    Iterate all keys in the underlying store.
    Methods in com.tangosol.io with parameters of type Binary
    Modifier and Type
    Method
    Description
    boolean
    BinaryStore.KeySetAware.containsKey(Binary binKey)
    Return true iff this BinaryStore contains a mapping for the specified key.
    void
    AbstractBinaryStore.erase(Binary binKey)
    Remove the specified key from the underlying store if present.
    void
    AsyncBinaryStore.erase(Binary binKey)
    Remove the specified key from the underlying store if present.
    void
    BinaryStore.erase(Binary binKey)
    Remove the specified key from the underlying store if present.
    abstract Binary
    AbstractBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    AsyncBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    BinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    protected void
    AsyncBinaryStore.QueueDaemon.processPending(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store, or if the value is AsyncBinaryStore.DELETED then erase the value from the underlying store.
    void
    AbstractEvolvable.setFutureData(Binary binFuture)
    Store the unknown remainder of the data stream from which this object is being deserialized.
    void
    Evolvable.setFutureData(Binary binFuture)
    Store the unknown remainder of the data stream from which this object is being deserialized.
    void
    SimpleEvolvable.setFutureData(Binary binFutureData)
    Store the unknown remainder of the data stream from which this object is being deserialized.
    void
    AbstractBinaryStore.store(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store.
    void
    AsyncBinaryStore.store(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store.
    void
    BinaryStore.store(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store.
  • Uses of Binary in com.tangosol.io.bdb

    Methods in com.tangosol.io.bdb that return Binary
    Modifier and Type
    Method
    Description
    BerkeleyDBBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    Methods in com.tangosol.io.bdb with parameters of type Binary
    Modifier and Type
    Method
    Description
    void
    BerkeleyDBBinaryStore.erase(Binary binKey)
    Remove the specified key from the underlying store if present.
    BerkeleyDBBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    void
    BerkeleyDBBinaryStore.store(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store.
  • Uses of Binary in com.tangosol.io.journal

    Fields in com.tangosol.io.journal with type parameters of type Binary
    Modifier and Type
    Field
    Description
    FlashJournalRM.m_mapLocators
    Map of locators to Binary values that have been queued to be written.
    Methods in com.tangosol.io.journal that return Binary
    Modifier and Type
    Method
    Description
    protected Binary
    AbstractJournalRM.extractBinary(long lTicket)
    Extract a Binary from the passed ticket.
    JournalBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    AbstractJournalRM.CollectorDaemon.InvokeGCJournalFile.read(long lTicket)
    Read the Binary associated with the specified ticket from the journal file.
    abstract Binary
    AbstractJournalRM.JournalFile.read(long lTicket)
    Read the Binary associated with the specified ticket from the journal file.
    AbstractJournalRM.JournalImpl.read(long lTicket)
    Using a ticket returned from a previous call to Journal.write(com.tangosol.util.Binary), read the Binary value that was written to the Journal.
    BackupJournalRM.JournalImpl.read(long lTicket)
    Using a ticket returned from a previous call to Journal.write(com.tangosol.util.Binary), read the Binary value that was written to the Journal.
    FlashJournalRM.JournalFile.read(long lTicket)
    Read the Binary associated with the specified ticket from the journal file.
    Journal.read(long lTicket)
    Using a ticket returned from a previous call to Journal.write(com.tangosol.util.Binary), read the Binary value that was written to the Journal.
    RamJournalRM.JournalFile.read(long lTicket)
    Read the Binary associated with the specified ticket from the journal file.
    RamJournalRM.JournalImpl.read(long lTicket)
    Using a ticket returned from a previous call to Journal.write(com.tangosol.util.Binary), read the Binary value that was written to the Journal.
    Methods in com.tangosol.io.journal with parameters of type Binary
    Modifier and Type
    Method
    Description
    boolean
    JournalBinaryStore.containsKey(Binary binKey)
    Return true iff this BinaryStore contains a mapping for the specified key.
    long
    AbstractJournalRM.CollectorDaemon.InvokeGCJournalFile.enqueue(Binary bin)
    Enqueue a Binary value to be written to this file, returning a ticket, or return 0L if this file is full and the append has to occur to a new file.
    abstract long
    AbstractJournalRM.JournalFile.enqueue(Binary bin)
    Enqueue a Binary value to be written to this file, returning a ticket, or return 0L if this file is full and the append has to occur to a new file.
    long
    FlashJournalRM.JournalFile.enqueue(Binary bin)
    Enqueue a Binary value to be written to this file, returning a ticket, or return 0L if this file is full and the append has to occur to a new file.
    long
    RamJournalRM.JournalFile.enqueue(Binary bin)
    Enqueue a Binary value to be written to this file, returning a ticket, or return 0L if this file is full and the append has to occur to a new file.
    void
    JournalBinaryStore.erase(Binary binKey)
    Remove the specified key from the underlying store if present.
    void
    JournalBinaryStore.ClearListener.keyAdded(Binary binKey)
    A notification that the primary map has added a new Binary/long key/value mapping; this implicitly creates a new key/value mapping in each delegating map, with the value being 0L.
    void
    JournalBinaryStore.ClearListener.keyRemoving(Binary binKey)
    A notification that the primary map is removing a Binary/long key/value mapping; this implies that the existing key/value mapping for the same Binary key in each delegating map is also being removed.
    JournalBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    void
    FlashJournalRM.Buffer.render(Binary bin, int of)
    Copy the passed Binary value into the buffer at the specified offset and using the passed overlay.
    void
    JournalBinaryStore.store(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store.
    long
    AbstractJournalRM.JournalImpl.write(Binary bin)
    Write a Binary value to the Journal and return a ticket for it.
    long
    BackupJournalRM.JournalImpl.write(Binary bin)
    Write a Binary value to the Journal and return a ticket for it.
    long
    Journal.write(Binary bin)
    Write a Binary value to the Journal and return a ticket for it.
    protected long
    AbstractJournalRM.JournalImpl.writeOverflow(Binary bin)
    Handle the case in which the write overflows the capacity of the journal.
    protected long
    RamJournalRM.JournalImpl.writeOverflow(Binary bin)
    Handle the case in which the write overflows the capacity of the journal.
  • Uses of Binary in com.tangosol.io.nio

    Methods in com.tangosol.io.nio that return Binary
    Modifier and Type
    Method
    Description
    protected static Binary
    BinaryMap.bin(String s)
    Internal debugging support: Turn a String into a Binary.
    BinaryMap.Block.getKey()
    Get the Entry key in the block, lazy loading it if necessary.
    BinaryMap.Block.getValue()
    Get the Entry value in the block, lazy loading it if necessary.
    BinaryMapStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    ByteBufferReadBuffer.toBinary(int of, int cb)
    Return a Binary object that holds the specified portion of this ReadBuffer.
    ByteBufferWriteBuffer.toBinary()
    Returns a new Binary object that holds the complete contents of this WriteBuffer.
    Methods in com.tangosol.io.nio with parameters of type Binary
    Modifier and Type
    Method
    Description
    void
    BinaryMapStore.erase(Binary binKey)
    Remove the specified key from the underlying store if present.
    protected BinaryMap.Block
    BinaryMap.findEntryBlock(Binary binKey)
    Find the Entry block with the specified key.
    protected BinaryMap.Entry
    BinaryMap.instantiateEntry(Binary binKey, Binary binValue)
    Factory pattern: Instantiate an Entry object.
    BinaryMapStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    void
    BinaryMap.Block.setKey(Binary bin)
    Update the Entry key in the block.
    void
    BinaryMap.Block.setValue(Binary bin)
    Update the Entry value in the block.
    void
    BinaryMapStore.store(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store.
    Constructors in com.tangosol.io.nio with parameters of type Binary
    Modifier
    Constructor
    Description
     
    Entry(Binary binKey, Binary binValue)
    Construct an Entry with a key and a value.
  • Uses of Binary in com.tangosol.io.pof

    Fields in com.tangosol.io.pof declared as Binary
    Modifier and Type
    Field
    Description
    static final Binary
    PofHelper.BINARY_EMPTY
    An empty Binary value.
    Methods in com.tangosol.io.pof that return Binary
    Modifier and Type
    Method
    Description
    RawQuad.getBits()
    Obtain the raw binary form of the 128-bit float.
    PofDeltaCompressor.ChangeTracker.getDelta()
    Obtain the final delta result as a Binary value.
    PofBufferReader.readBinary(int iProp)
    Read a Binary from the POF stream.
    protected static Binary
    PofBufferReader.readBinary(ReadBuffer.BufferInput in)
    Read a Binary object from the specified BufferInput in an optimal way, depending on the existence of an enclosing ReadBuffer.
    PofReader.readBinary(int iProp)
    Read a Binary from the POF stream.
    PofBufferReader.readRemainder()
    Read all remaining indexed properties of the current user type from the POF stream.
    PofBufferReader.UserTypeReader.readRemainder()
    Read all remaining indexed properties of the current user type from the POF stream.
    PofReader.readRemainder()
    Read all remaining indexed properties of the current user type from the POF stream.
    Methods in com.tangosol.io.pof with parameters of type Binary
    Modifier and Type
    Method
    Description
    void
    AbstractPofHandler.onOctetString(int iPos, Binary bin)
    Report that a octet string value has been encountered in the POF stream.
    void
    DuplexingPofHandler.onOctetString(int iPos, Binary bin)
    Report that a octet string value has been encountered in the POF stream.
    void
    LoggingPofHandler.onOctetString(int iPos, Binary bin)
    Report that a octet string value has been encountered in the POF stream.
    void
    PofHandler.onOctetString(int iPos, Binary bin)
    Report that a octet string value has been encountered in the POF stream.
    void
    ValidatingPofHandler.onOctetString(int iPos, Binary bin)
    Report that a octet string value has been encountered in the POF stream.
    void
    WritingPofHandler.onOctetString(int iPos, Binary bin)
    Report that a octet string value has been encountered in the POF stream.
    void
    PofBufferWriter.writeBinary(int iProp, Binary bin)
    Write a Binary property to the POF stream.
    void
    PofWriter.writeBinary(int iProp, Binary bin)
    Write a Binary property to the POF stream.
    void
    PofBufferWriter.UserTypeWriter.writeRemainder(Binary binProps)
    Write the remaining properties to the POF stream, terminating the writing of the current user type.
    void
    PofBufferWriter.writeRemainder(Binary binProps)
    Write the remaining properties to the POF stream, terminating the writing of the current user type.
    void
    PofWriter.writeRemainder(Binary binProps)
    Write the remaining properties to the POF stream, terminating the writing of the current user type.
    Constructors in com.tangosol.io.pof with parameters of type Binary
    Modifier
    Constructor
    Description
     
    RawQuad(Binary binBits)
    Construct a RawQuad from the raw binary data.
  • Uses of Binary in com.tangosol.io.pof.reflect

    Methods in com.tangosol.io.pof.reflect that return Binary
    Modifier and Type
    Method
    Description
    AbstractPofValue.applyChanges()
    Apply all the changes that were made to this value and return a binary representation of the new value.
    PofValue.applyChanges()
    Apply all the changes that were made to this value and return a binary representation of the new value.
  • Uses of Binary in com.tangosol.net

    Methods in com.tangosol.net that return types with arguments of type Binary
    Modifier and Type
    Method
    Description
    PartitionedService.instantiateKeyToBinaryConverter(ClassLoader loader, boolean fPassThrough)
    Instantiate a Converter that can convert a key to a Binary key.
  • Uses of Binary in com.tangosol.net.cache

    Fields in com.tangosol.net.cache declared as Binary
    Modifier and Type
    Field
    Description
    static final Binary
    ReadWriteBackingMap.BIN_ERASE_PENDING
    Binary representation of a decorated null for write-behind remove.
    protected static final Binary
    ReadWriteBackingMap.BIN_STORE_PENDING
    The binary form of the decoration indicating that the CacheStore on the primary member has not yet written the value.
    protected Binary
    BackingMapBinaryEntry.m_binKey
    The Binary key.
    protected Binary
    CompactSerializationCache.InternalEvictionPolicy.EvictionCandidate.m_binKey
    The Binary key represented by this EvictionCandidate.
    protected Binary
    BackingMapBinaryEntry.m_binValue
    The Binary value.
    protected Binary
    BackingMapBinaryEntry.m_binValueOrig
    The original Binary value.
    protected static final Binary
    ReadWriteBackingMap.REMOVED
    Marker object used by ReadWriteBackingMap.Entry to indicate remove was called on the Entry.
    Methods in com.tangosol.net.cache that return Binary
    Modifier and Type
    Method
    Description
    BackingMapBinaryEntry.getBinaryKey()
    Return a raw binary key for this entry.
    BackingMapBinaryEntry.getBinaryValue()
    Return a raw binary value for this entry.
    ReadWriteBackingMap.Entry.getChangedBinaryValue()
    Return the Binary value changed by the BinaryEntryStore.
    BackingMapBinaryEntry.getOriginalBinaryValue()
    Return a raw original binary value for this entry.
    SerializationPagedCache.FakeBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    SerializationPagedCache.PagedBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    SerializationPagedCache.WrapperBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    protected Binary
    BinaryStoreCacheStore.toBinary(Object o)
    Translate the passed Object object into an Binary object.
    protected Binary
    CompactSerializationCache.toBinary(Object o)
    Translate the passed Object object into an Binary object.
    protected Binary
    SerializationMap.toBinary(Object o)
    Translate the passed Object object into an Binary object.
    protected Binary
    SimpleSerializationMap.toBinary(Object o)
    Translate the passed Object object into an Binary object.
    protected Binary
    ContinuousQueryCache.toInternal(Object oValue)
    Serialize the provided value into a Binary.
    Methods in com.tangosol.net.cache with parameters of type Binary
    Modifier and Type
    Method
    Description
    boolean
    ReadWriteBackingMap.WriteQueue.accelerateEntryRipe(Binary binKey)
    Move the ripe time for the queued entry up to accelerate the store operation.
    protected int
    CompactSerializationCache.calculateUnits(Binary binKey, Binary binValue)
    Calculate the unit cost of the specified cache entry, according to the configured unit-calculator.
    protected long
    CompactSerializationCache.HybridEvictionPolicy.calculateWeight(Binary binKey)
    Calculate the "weight" of the entry associated with the specified key.
    protected abstract long
    CompactSerializationCache.InternalEvictionPolicy.calculateWeight(Binary binKey)
    Calculate the "weight" of the entry associated with the specified key.
    protected long
    CompactSerializationCache.LFUEvictionPolicy.calculateWeight(Binary binKey)
    Calculate the "weight" of the entry associated with the specified key.
    protected long
    CompactSerializationCache.LRUEvictionPolicy.calculateWeight(Binary binKey)
    Calculate the "weight" of the entry associated with the specified key.
    protected long
    CompactSerializationCache.WrapperEvictionPolicy.calculateWeight(Binary binKey)
    Calculate the "weight" of the entry associated with the specified key.
    protected void
    CompactSerializationCache.checkExpiry(Binary binKey)
    Check the specified key to see if it is expired, removing it if necessary.
    protected void
    CompactSerializationCache.dispatchEvent(int nId, Binary binKey, Object oKey, Object oValueOld, Object oValueNew, boolean fSynthetic)
    Dispatch the passed event.
    void
    CompactSerializationCache.InternalEvictionPolicy.entryTouched(Binary binKey)
    This method is called by the cache to indicate that the entry for the specified key has been touched.
    void
    CompactSerializationCache.WrapperEvictionPolicy.entryTouched(Binary binKey)
    This method is called by the cache to indicate that the entry for the specified key has been touched.
    void
    SerializationPagedCache.FakeBinaryStore.erase(Binary binKey)
    Remove the specified key from the underlying store if present.
    void
    SerializationPagedCache.PagedBinaryStore.erase(Binary binKey)
    Remove the specified key from the underlying store if present.
    void
    SerializationPagedCache.WrapperBinaryStore.erase(Binary binKey)
    Remove the specified key from the underlying store if present.
    protected int
    CompactSerializationCache.evictInternal(Binary binKey)
    Attempt to evict the cache entry for the specified key from the cache as a result of either expiration or size-triggered eviction, returning the unit-size of the evicted entry, or 0 if the eviction was disallowed by the ConfigurableCacheMap.EvictionApprover.
    protected Object
    BinaryStoreCacheStore.fromBinary(Binary bin)
    Translate the passed Binary object into an Object object.
    protected Object
    CompactSerializationCache.fromBinary(Binary bin)
    Translate the passed Binary object into an Object object.
    protected Object
    SerializationMap.fromBinary(Binary bin)
    Translate the passed Binary object into an Object object.
    protected Object
    SimpleSerializationMap.fromBinary(Binary bin)
    Translate the passed Binary object into an Object object.
    CompactSerializationCache.getCacheEntryInternal(Binary binKey)
    Return a ConfigurableCacheMap.Entry for the specified key.
    CompactSerializationCache.getCacheEntryInternal(Binary binKey, Object oKey)
    Return a ConfigurableCacheMap.Entry for the specified key.
    protected int
    CompactSerializationCache.getEntryUnits(Binary binKey)
    Return the unit-size of the entry associated with the specified key, or 0 if the key does not exist.
    CompactSerializationCache.instantiateDeferredCacheEvent(int nId, Binary binKey, Object oKey, Object oValueOld, Object oValueNew, boolean fSynthetic)
    Create a DeferredCacheEvent object with the provided arguments.
    SerializationPagedCache.FakeBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    SerializationPagedCache.PagedBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    SerializationPagedCache.WrapperBinaryStore.load(Binary binKey)
    Return the value associated with the specified key, or null if the key does not have an associated value in the underlying store.
    protected void
    CompactSerializationCache.registerExpiry(Binary binKey, long cExpiry)
    Register the expiry for the specified key.
    protected void
    SerializationCache.registerKey(Object oKey, Binary binKey, Binary binValue)
    Register a new key for the SerializationMap.
    protected void
    SerializationCache.registerKey(Object oKey, Binary binKey, Binary binValue, int cMillis)
    Register a new key for the SerializationMap.
    protected void
    SerializationMap.registerKey(Object oKey, Binary binKey, Binary binValue)
    Register a new key for the SerializationMap.
    protected Object
    CompactSerializationCache.removeInternal(Object oKey, Binary binKey, boolean fBlind)
    Remove the given key from the BinaryStore only loading the value if necessary.
    void
    SerializationPagedCache.FakeBinaryStore.store(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store.
    void
    SerializationPagedCache.PagedBinaryStore.store(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store.
    void
    SerializationPagedCache.WrapperBinaryStore.store(Binary binKey, Binary binValue)
    Store the specified value under the specific key in the underlying store.
    protected void
    CompactSerializationCache.touch(Binary binKey)
    Register a "touch" of the specified key.
    protected void
    CompactSerializationCache.InternalEvictionPolicy.touchInternal(Binary binKey)
    Update the internally maintained "touch"-related statistics for the specified key (e.g. touch time and touch count).
    void
    BackingMapBinaryEntry.updateBinaryValue(Binary binValue)
    Update the binary value for this entry.
    void
    BackingMapBinaryEntry.updateBinaryValue(Binary binValue, boolean fSynthetic)
    Update the binary value for this entry.
    void
    ReadWriteBackingMap.Entry.updateBinaryValue(Binary binValue)
    Update the binary value for this entry.
    protected void
    CompactSerializationCache.updateUnits(Binary binKey, int cUnits)
    Update the units associated with the specified key.
    Constructors in com.tangosol.net.cache with parameters of type Binary
    Modifier
    Constructor
    Description
     
    BackingMapBinaryEntry(Binary binKey, Binary binValue, Binary binValueOrig, long cDelay, BackingMapManagerContext ctx)
    Construct a BackingMapBinaryEntry with the specified binary key, values and BackingMapManagerContext.
     
    BackingMapBinaryEntry(Binary binKey, Binary binValue, Binary binValueOrig, BackingMapManagerContext ctx)
    Construct a BackingMapBinaryEntry with the specified binary key, values and BackingMapManagerContext.
     
    Entry(Binary binKey, Binary binValue, Binary binValueOrig, long cExpiry, BackingMapManagerContext ctx)
    Construct an Entry with just a key.
     
    EvictionCandidate(Binary binKey, long lWeight, long cUnits)
    Construct a EvictionCandidate for the specified key and weight.
  • Uses of Binary in com.tangosol.net.topic

    Methods in com.tangosol.net.topic that return Binary
    Modifier and Type
    Method
    Description
    Subscriber.Element.getBinaryValue()
    Returns the element's value in serialized form.
    TopicPublisherException.getBinaryValue()
    Returns the value that failed to be published in serialized Binary format.
    Methods in com.tangosol.net.topic that return types with arguments of type Binary
    Modifier and Type
    Method
    Description
    TopicPublisherException.createFactory(Serializer serializer)
    Create a factory function that creates a TopicPublisherException.
    TopicPublisherException.createFactory(Serializer serializer, String sReason)
    Create a factory function that creates a TopicPublisherException.
    Methods in com.tangosol.net.topic with parameters of type Binary
    Modifier and Type
    Method
    Description
    int
    BinaryElementCalculator.calculateUnits(Binary binElement)
     
    int
    FixedElementCalculator.calculateUnits(Binary binElement)
     
    int
    NamedTopic.ElementCalculator.calculateUnits(Binary binElement)
    Calculate cost for the specified element.
    Constructors in com.tangosol.net.topic with parameters of type Binary
    Modifier
    Constructor
    Description
     
    TopicPublisherException(String sMessage, Binary binValue, Serializer serializer)
     
    TopicPublisherException(String sMessage, Throwable cause, Binary binValue, Serializer serializer)
     
    TopicPublisherException(Throwable cause, Binary binValue, Serializer serializer)
  • Uses of Binary in com.tangosol.persistence

    Methods in com.tangosol.persistence that return Binary
    Modifier and Type
    Method
    Description
    static Binary
    CachePersistenceHelper.readQuorumRaw(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store)
    Read the membership information in Binary format from the "META" extent.
    static Binary
    CachePersistenceHelper.writeQuorum(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, PartitionedService service)
    Write the current membership information to the "META" extent.
    Methods in com.tangosol.persistence with parameters of type Binary
    Modifier and Type
    Method
    Description
    protected static ReadBuffer
    CachePersistenceHelper.createIndexRegistrationKey(long lCacheId, Binary binExtractor)
    Create a key representing an index registration.
    protected static ReadBuffer
    CachePersistenceHelper.createListenerRegistrationKey(long lMemberId, long lCacheId, Binary binKey)
    Create a key representing a cache listener registration.
    protected static ReadBuffer
    CachePersistenceHelper.createLockRegistrationKey(long lHolderId, long lHolderThreadId, long lCacheId, Binary binKey)
    Create a key representing a cache entry lock.
    protected static ReadBuffer
    CachePersistenceHelper.createTriggerRegistrationKey(long lCacheId, Binary binTrigger)
    Create a key representing an trigger registration.
    static void
    CachePersistenceHelper.registerIndex(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, long lCacheId, Binary binExtractor, Binary binComparator, Object oToken)
    Store the index registration in the specified persistent store.
    static void
    CachePersistenceHelper.registerListener(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, long lCacheId, Binary binKey, long lListenerId, boolean fLite, Object oToken)
    Store the listener registration in the specified persistent store.
    static void
    CachePersistenceHelper.registerLock(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, long lCacheId, Binary binKey, long lHolderId, long lHolderThreadId, Object oToken)
    Store the cache entry lock in the specified persistent store.
    static void
    CachePersistenceHelper.registerTrigger(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, long lCacheId, Binary binTrigger, Object oToken)
    Store the trigger registration in the specified persistent store.
    static void
    CachePersistenceHelper.unregisterIndex(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, long lCacheId, Binary binExtractor, Object oToken)
    Clear the index registration from the specified persistent store.
    static void
    CachePersistenceHelper.unregisterListener(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, long lCacheId, Binary binKey, long lListenerId, Object oToken)
    Clear the listener registration from the specified persistent store.
    static void
    CachePersistenceHelper.unregisterLock(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, long lCacheId, Binary binKey, long lHolderId, long lHolderThreadId, Object oToken)
    Clear the cache entry lock from the specified persistent store.
    static void
    CachePersistenceHelper.unregisterTrigger(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, long lCacheId, Binary binTrigger, Object oToken)
    Clear the trigger registration from the specified persistent store.
    boolean
    AbstractPersistenceTools.StatsVisitor.visitCacheEntry(long lOldCacheId, Binary binKey, Binary binValue)
     
    boolean
    CachePersistenceHelper.Visitor.visitCacheEntry(long lOldCacheId, Binary binKey, Binary binValue)
    Apply the visitor to the specified cache entry (key-value pair).
    boolean
    AbstractPersistenceTools.StatsVisitor.visitIndex(long lOldCacheId, Binary binExtractor, Binary binComparator)
     
    boolean
    CachePersistenceHelper.Visitor.visitIndex(long lOldCacheId, Binary binExtractor, Binary binComparator)
    Apply the visitor to the specified cache index.
    boolean
    AbstractPersistenceTools.StatsVisitor.visitListener(long lOldCacheId, Binary binKey, long lListenerId, boolean fLite)
     
    boolean
    CachePersistenceHelper.Visitor.visitListener(long lOldCacheId, Binary binKey, long lListenerId, boolean fLite)
    Apply the visitor to the specified cache entry listener.
    boolean
    AbstractPersistenceTools.StatsVisitor.visitLock(long lOldCacheId, Binary binKey, long lHolderId, long lHolderThreadId)
     
    boolean
    CachePersistenceHelper.Visitor.visitLock(long lOldCacheId, Binary binKey, long lHolderId, long lHolderThreadId)
    Apply the visitor to the specified cache entry lock.
    boolean
    AbstractPersistenceTools.StatsVisitor.visitTrigger(long lOldCacheId, Binary binTrigger)
     
    boolean
    CachePersistenceHelper.Visitor.visitTrigger(long lOldCacheId, Binary binTrigger)
    Apply the visitor to the specified trigger.
    static void
    CachePersistenceHelper.writeQuorumRaw(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store, Binary binInfo)
    Write the current membership information in raw format to the "META" extent.
  • Uses of Binary in com.tangosol.run.xml

    Methods in com.tangosol.run.xml that return Binary
    Modifier and Type
    Method
    Description
    SimpleValue.getBinary()
    Get the value as binary.
    SimpleValue.getBinary(Binary binDefault)
    Get the value as binary.
    XmlValue.getBinary()
    Get the value as binary.
    XmlValue.getBinary(Binary binDefault)
    Get the value as binary.
    Methods in com.tangosol.run.xml with parameters of type Binary
    Modifier and Type
    Method
    Description
    SimpleValue.getBinary(Binary binDefault)
    Get the value as binary.
    XmlValue.getBinary(Binary binDefault)
    Get the value as binary.
    void
    SimpleValue.setBinary(Binary binVal)
    Set the binary value.
    void
    XmlValue.setBinary(Binary binVal)
    Set the binary value.
  • Uses of Binary in com.tangosol.util

    Fields in com.tangosol.util declared as Binary
    Modifier and Type
    Field
    Description
    static final Binary
    Binary.EMPTY
    An empty Binary.
    static final Binary[]
    ExternalizableHelper.EMPTY_BINARY_ARRAY
    An empty array of Binary objects.
    static final Binary
    Binary.FALSE
    A Binary representation of Boolean.FALSE value.
    static final Binary
    Binary.TRUE
    A Binary representation of Boolean.TRUE value.
    Methods in com.tangosol.util that return Binary
    Modifier and Type
    Method
    Description
    static Binary
    ExternalizableHelper.asBinary(ReadBuffer buf)
    Return a Binary representing the contents of the specified ReadBuffer, or null if the buffer is null.
    Binary.concat(Binary bin)
    Concatenate the passed Binary onto this Binary.
    static Binary
    ExternalizableHelper.decorate(Binary bin, int nId, Binary binDecoration)
    Decorate the passed value with the specified decoration and return the resulting Binary.
    static Binary
    ExternalizableHelper.decorate(Binary bin, Binary[] abinDecorations)
    Deprecated.
    as of Coherence 3.7.2
    BinaryEntry.getBinaryKey()
    Return a raw binary key for this entry.
    ConverterCollections.ConverterMapEvent.ConverterMapEventEntry.getBinaryKey()
    Return a raw binary key for this entry.
    InvocableMapHelper.RoutingBinaryEntry.getBinaryKey()
    Return a raw binary key for this entry.
    BinaryEntry.getBinaryValue()
    Return a raw binary value for this entry.
    ConverterCollections.ConverterMapEvent.ConverterMapEventEntry.getBinaryValue()
    Return a raw binary value for this entry.
    InvocableMapHelper.RoutingBinaryEntry.getBinaryValue()
    Return an OriginalBinaryValue from the underlying entry.
    static Binary
    ExternalizableHelper.getDecoration(Binary bin, int nId)
    Deprecated.
    as of Coherence 3.7.2
    BinaryLongMap.Entry.getKey()
    Obtain the key.
    MultiBinaryLongMap.AbstractDelegateBinaryLongMap.DelegateEntryVisitor.WrapperEntry.getKey()
    Obtain the key.
    MultiBinaryLongMap.MaskedBinaryLongMap.MaskedEntry.getKey()
    Obtain the key.
    MultiBinaryLongMap.SafeEntry.getKey()
    Obtain the key.
    Return a raw original binary value for this entry.
    ConverterCollections.ConverterMapEvent.ConverterMapEventBinaryEntry.getOriginalBinaryValue()
    Return a raw original binary value for this entry.
    InvocableMapHelper.RoutingBinaryEntry.getOriginalBinaryValue()
     
    static Binary
    Base.getRandomBinary(int cbMin, int cbMax)
    Generates a random-length Binary within the length bounds provided whose contents are random bytes.
    static Binary
    Base.getRandomBinary(int cbMin, int cbMax, byte... abHead)
    Generates a random-length Binary including abHead at the head of the Binary, in addition to random bytes within the length bounds provided.
    static Binary
    ExternalizableHelper.getUndecorated(Binary bin)
    Deprecated.
    as of Coherence 3.7.2
    static Binary
    Binary.join(Binary[] aBinaries)
    Join an array of Binaries into a single Binary.
    Unsafe.newBinary(byte[] ab, int of, int cb)
    Return a new Binary instance backed by the specified byte[] beginning at the specified offset and of the specified length.
    MultiBinaryLongMap.WrapperBinaryLongMap.WrapperIterator.next()
    static Binary
    Binary.readBinary(DataInput input)
    Read a Binary from the specified DataInput.
    static Binary
    Read a Binary from the specified DataInputStream.
    static Binary
    Binary.readBinary(File file)
    Read a Binary from the specified File.
    static Binary
    Read a Binary from the specified InputStream.
    static Binary
    Binary.readBinary(InputStream in, int cb)
    Read a Binary from the specified InputStream.
    static Binary
    Binary.readBinary(URL url)
    Read a Binary from the specified URL.
    static Binary
    Binary.readBinary(FileChannel channel, long of, int cb, byte[] ab2)
    Read a Binary of the specified length at the specified offset from the specified FileChannel.
    static Binary
    ExternalizableHelper.removeIntDecoration(Binary bin)
    Deprecated.
    as of Coherence 3.7.2
    Binary.replace(byte bOld, byte bNew)
    Replace all occurrences of one specified byte with another in this Binary object.
    Binary.replace(Binary binOld, Binary binNew)
    Replace all occurrences of one specified Binary with another in this Binary object.
    Binary.replaceRegion(int of, int cb, Binary binNew)
    Replace a region within this Binary with another Binary.
    Binary.reverse()
    Reverse this Binary object's byte sequence such that the byte at offset zero of this sequence occurs at offset length()-1 in the resulting sequence, the byte at offset one of this sequence occurs at offset length()-2 in the resulting sequence, and so on.
    Binary.split(int nSize)
    Split a Binary into an array of Binaries each of which does not exceed the specified size.
    AbstractByteSequence.toBinary()
    Returns a Binary object that holds the contents of this ByteSequence.
    Binary.toBinary()
    Return a new Binary object that holds the complete contents of this ReadBuffer.
    Binary.toBinary(int of, int cb)
    Return a Binary object that holds the specified portion of this ReadBuffer.
    BinaryWriteBuffer.toBinary()
    Returns a new Binary object that holds the complete contents of this WriteBuffer.
    ByteSequence.toBinary()
    Returns a Binary object that holds the contents of this ByteSequence.
    static Binary
    ExternalizableHelper.toBinary(Object o)
    Write an object into a Binary object.
    static Binary
    ExternalizableHelper.toBinary(Object o, Serializer serializer)
    Write an object into a Binary object using the specified Serializer.
    static Binary
    ExternalizableHelper.toBinary(Object o, Serializer serializer, WriteBuffer buf)
    Write an object into a Binary object using the specified Serializer.
    static Binary
    ExternalizableHelper.toLiteBinary(ExternalizableLite o)
    Write an ExternalizableLite object into a Binary object.
    static Binary
    ExternalizableHelper.undecorate(Binary bin, int nId)
    Deprecated.
    as of Coherence 3.7.2
    Methods in com.tangosol.util that return types with arguments of type Binary
    Modifier and Type
    Method
    Description
    BinaryLongMap.keys()
    Obtain an iterator of the keys stored in the map.
    BinaryLongMap.keys(Predicate<BinaryLongMap.Entry> predicate)
    Obtain an iterator of the keys stored in the map whose corresponding Entry matches the passed Predicate<Entry>.
    BinaryRadixTree.keys()
    Obtain an iterator of the keys stored in the map.
    BinaryRadixTree.keys(Predicate<BinaryLongMap.Entry> predicate)
    Obtain an iterator of the keys stored in the map whose corresponding Entry matches the passed Predicate<Entry>.
    MultiBinaryLongMap.AbstractDelegateBinaryLongMap.keys()
    Obtain an iterator of the keys stored in the map.
    MultiBinaryLongMap.AbstractDelegateBinaryLongMap.keys(Predicate<BinaryLongMap.Entry> predicate)
    Obtain an iterator of the keys stored in the map whose corresponding Entry matches the passed Predicate<Entry>.
    MultiBinaryLongMap.MaskedBinaryLongMap.keys()
    Obtain an iterator of the keys stored in the map.
    MultiBinaryLongMap.MaskedBinaryLongMap.keys(Predicate<BinaryLongMap.Entry> predicate)
    Obtain an iterator of the keys stored in the map whose corresponding Entry matches the passed Predicate<Entry>.
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.keys()
    Obtain an iterator of the keys stored in the map.
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.keys(Predicate<BinaryLongMap.Entry> predicate)
    Obtain an iterator of the keys stored in the map whose corresponding Entry matches the passed Predicate<Entry>.
    MultiBinaryLongMap.PrimaryBinaryLongMap.keys()
    Obtain an iterator of the keys stored in the map.
    MultiBinaryLongMap.PrimaryBinaryLongMap.keys(Predicate<BinaryLongMap.Entry> predicate)
    Obtain an iterator of the keys stored in the map whose corresponding Entry matches the passed Predicate<Entry>.
    MultiBinaryLongMap.SafeBinaryLongMap.keys()
    Obtain an iterator of the keys stored in the map.
    MultiBinaryLongMap.SafeBinaryLongMap.keys(Predicate<BinaryLongMap.Entry> predicate)
    Obtain an iterator of the keys stored in the map whose corresponding Entry matches the passed Predicate<Entry>.
    MultiBinaryLongMap.WrapperBinaryLongMap.keys()
    Obtain an iterator of the keys stored in the map.
    MultiBinaryLongMap.WrapperBinaryLongMap.keys(Predicate<BinaryLongMap.Entry> predicate)
    Obtain an iterator of the keys stored in the map whose corresponding Entry matches the passed Predicate<Entry>.
    Methods in com.tangosol.util with parameters of type Binary
    Modifier and Type
    Method
    Description
    protected void
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.addValue(Binary binKey, long lValueNew)
    Add the specified key to the BinaryLongMap, and associate the specified value with it in the primary BLM.
    int
    Binary.compareTo(Binary that)
    Compares this object with the specified object for order.
    Binary.concat(Binary bin)
    Concatenate the passed Binary onto this Binary.
    static Binary
    ExternalizableHelper.decorate(Binary bin, int nId, Binary binDecoration)
    Decorate the passed value with the specified decoration and return the resulting Binary.
    static Binary
    ExternalizableHelper.decorate(Binary bin, Binary[] abinDecorations)
    Deprecated.
    as of Coherence 3.7.2
    protected boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.doPut(Binary binKey, long lValue, boolean fOnlyIfAbsent)
    boolean
    Binary.endsWith(Binary bin)
    Tests if this Binary object ends with the specified suffix.
    static <T> T
    ExternalizableHelper.fromBinary(Binary bin)
    Read an object from a Binary object.
    static <T> T
    ExternalizableHelper.fromBinary(Binary bin, Serializer serializer)
    Read an object from a Binary object using the specified Serializer.
    static <T> T
    ExternalizableHelper.fromBinary(Binary bin, Serializer serializer, Remote.Function<ReadBuffer.BufferInput,ReadBuffer.BufferInput> supplier)
    Read an object from a Binary object using the specified Serializer.
    static <T> T
    ExternalizableHelper.fromBinary(Binary bin, Serializer serializer, Remote.Function<ReadBuffer.BufferInput,ReadBuffer.BufferInput> supplier, Class<T> clazz)
    Read an object from a Binary object using the specified Serializer and expected class.
    static <T> T
    ExternalizableHelper.fromBinary(Binary bin, Serializer serializer, Class<T> clazz)
    Read an object from a Binary object using the specified Serializer and expected class.
    static <T> T
    ExternalizableHelper.fromBinary(Binary bin, ClassLoader loader)
    Read an object from a Binary object.
    long
    BinaryLongMap.get(Binary binKey)
    Find the specified key in the map and return the value associated with it.
    long
    BinaryRadixTree.get(Binary binKey)
    Find the specified key in the map and return the value associated with it.
    long
    MultiBinaryLongMap.AbstractDelegateBinaryLongMap.get(Binary binKey)
    Find the specified key in the map and return the value associated with it.
    long
    MultiBinaryLongMap.MaskedBinaryLongMap.get(Binary binKey)
    Find the specified key in the map and return the value associated with it.
    long
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.get(Binary binKey)
    Find the specified key in the map and return the value associated with it.
    long
    MultiBinaryLongMap.PrimaryBinaryLongMap.get(Binary binKey)
    Find the specified key in the map and return the value associated with it.
    long
    MultiBinaryLongMap.SafeBinaryLongMap.get(Binary binKey)
    Find the specified key in the map and return the value associated with it.
    long
    MultiBinaryLongMap.WrapperBinaryLongMap.get(Binary binKey)
    Find the specified key in the map and return the value associated with it.
    int
    Unsafe.getArrayOffset(Binary bin)
    Return the offset into the underlying byte array for the specified Binary.
    byte[]
    Unsafe.getByteArray(Binary bin)
    Return the underlying byte[] for the specified Binary.
    static Binary
    ExternalizableHelper.getDecoration(Binary bin, int nId)
    Deprecated.
    as of Coherence 3.7.2
    protected int
    MultiBinaryLongMap.AbstractDelegateBinaryLongMap.getSlot(Binary binKey)
    Return the slot index associated with the specified key.
    static Binary
    ExternalizableHelper.getUndecorated(Binary bin)
    Deprecated.
    as of Coherence 3.7.2
    int
    Binary.indexOf(Binary bin)
    Returns the offset within this Binary object of the first occurrence of the specified Binary.
    int
    Binary.indexOf(Binary bin, int ofFrom)
    Returns the offset within this Binary object of the first occurrence of the specified Binary, starting the search at the specified offset.
    static Binary
    Binary.join(Binary[] aBinaries)
    Join an array of Binaries into a single Binary.
    void
    MultiBinaryLongMap.BinaryLongMapListener.keyAdded(Binary binKey)
    A notification that the primary map has added a new Binary/long key/value mapping; this implicitly creates a new key/value mapping in each delegating map, with the value being 0L.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.keyAdded(Binary binKey)
    A notification that the primary map has added a new Binary/long key/value mapping; this implicitly creates a new key/value mapping in each delegating map, with the value being 0L.
    void
    MultiBinaryLongMap.BinaryLongMapListener.keyRemoving(Binary binKey)
    A notification that the primary map is removing a Binary/long key/value mapping; this implies that the existing key/value mapping for the same Binary key in each delegating map is also being removed.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.keyRemoving(Binary binKey)
    A notification that the primary map is removing a Binary/long key/value mapping; this implies that the existing key/value mapping for the same Binary key in each delegating map is also being removed.
    int
    Binary.lastIndexOf(Binary bin)
    Returns the offset within this Binary object of the last occurrence of the specified Binary.
    int
    Binary.lastIndexOf(Binary bin, int ofFrom)
    Returns the offset within this Binary object of the last occurrence of the specified Binary, starting the search at the specified offset.
    void
    NullImplementation.NullPofHandler.onOctetString(int iPos, Binary bin)
    Report that a octet string value has been encountered in the POF stream.
    void
    BinaryLongMap.put(Binary binKey, long lValue)
    Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.
    void
    BinaryRadixTree.put(Binary binKey, long lValue)
    Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.
    void
    MultiBinaryLongMap.DelegatingBinaryLongMap.put(Binary binKey, long lValue)
    Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.
    void
    MultiBinaryLongMap.MaskedBinaryLongMap.put(Binary binKey, long lValue)
    Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.CompressedPrimaryBinaryLongMap.put(Binary binKey, long lValue)
    Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.put(Binary binKey, long lValue)
    Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.put(Binary binKey, long lValue)
    Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.
    void
    MultiBinaryLongMap.SafeBinaryLongMap.put(Binary binKey, long lValue)
    Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.
    void
    MultiBinaryLongMap.WrapperBinaryLongMap.put(Binary binKey, long lValue)
    Blindly store the passed value for the specified key, adding the key if it is not already in the map, or replacing the current value if the key is in the map.
    boolean
    BinaryLongMap.putIfAbsent(Binary binKey, long lValue)
    Store the passed value for the specified key, only if the key does not currently exist in the map.
    boolean
    BinaryRadixTree.putIfAbsent(Binary binKey, long lValue)
    Store the passed value for the specified key, only if the key does not currently exist in the map.
    boolean
    MultiBinaryLongMap.DelegatingBinaryLongMap.putIfAbsent(Binary binKey, long lValue)
    Store the passed value for the specified key, only if the key does not currently exist in the map.
    boolean
    MultiBinaryLongMap.MaskedBinaryLongMap.putIfAbsent(Binary binKey, long lValue)
    Store the passed value for the specified key, only if the key does not currently exist in the map.
    boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.CompressedPrimaryBinaryLongMap.putIfAbsent(Binary binKey, long lValue)
    Store the passed value for the specified key, only if the key does not currently exist in the map.
    boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.putIfAbsent(Binary binKey, long lValue)
    Store the passed value for the specified key, only if the key does not currently exist in the map.
    boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.putIfAbsent(Binary binKey, long lValue)
    Store the passed value for the specified key, only if the key does not currently exist in the map.
    boolean
    MultiBinaryLongMap.SafeBinaryLongMap.putIfAbsent(Binary binKey, long lValue)
    Store the passed value for the specified key, only if the key does not currently exist in the map.
    boolean
    MultiBinaryLongMap.WrapperBinaryLongMap.putIfAbsent(Binary binKey, long lValue)
    Store the passed value for the specified key, only if the key does not currently exist in the map.
    boolean
    Binary.regionMatches(int ofThis, Binary that, int ofThat, int cb)
    Tests if two Binary regions are equal.
    void
    BinaryLongMap.remove(Binary binKey)
    Blindly remove the specified Binary key from the map.
    boolean
    BinaryLongMap.remove(Binary binKey, long lValue)
    Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.
    void
    BinaryRadixTree.remove(Binary binKey)
    Blindly remove the specified Binary key from the map.
    boolean
    BinaryRadixTree.remove(Binary binKey, long lValue)
    Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.
    void
    MultiBinaryLongMap.DelegatingBinaryLongMap.remove(Binary binKey)
    Blindly remove the specified Binary key from the map.
    boolean
    MultiBinaryLongMap.DelegatingBinaryLongMap.remove(Binary binKey, long lValue)
    Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.
    void
    MultiBinaryLongMap.MaskedBinaryLongMap.remove(Binary binKey)
    Blindly remove the specified Binary key from the map.
    boolean
    MultiBinaryLongMap.MaskedBinaryLongMap.remove(Binary binKey, long lValue)
    Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.CompressedPrimaryBinaryLongMap.remove(Binary binKey)
    Blindly remove the specified Binary key from the map.
    boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.CompressedPrimaryBinaryLongMap.remove(Binary binKey, long lValue)
    Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.remove(Binary binKey)
    Blindly remove the specified Binary key from the map.
    boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.remove(Binary binKey, long lValue)
    Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.remove(Binary binKey)
    Blindly remove the specified Binary key from the map.
    boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.remove(Binary binKey, long lValue)
    Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.
    void
    MultiBinaryLongMap.SafeBinaryLongMap.remove(Binary binKey)
    Blindly remove the specified Binary key from the map.
    boolean
    MultiBinaryLongMap.SafeBinaryLongMap.remove(Binary binKey, long lValue)
    Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.
    void
    MultiBinaryLongMap.WrapperBinaryLongMap.remove(Binary binKey)
    Blindly remove the specified Binary key from the map.
    boolean
    MultiBinaryLongMap.WrapperBinaryLongMap.remove(Binary binKey, long lValue)
    Remove the specified Binary key from the map iff it exists in the map and is associated with the specified value.
    static Binary
    ExternalizableHelper.removeIntDecoration(Binary bin)
    Deprecated.
    as of Coherence 3.7.2
    protected boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.removeValue(Binary binKey, long lValue)
    Remove the specified key from the BinaryLongMap, optionally performing the operation only if the value currently associated with the key matches the passed "old" value.
    Binary.replace(Binary binOld, Binary binNew)
    Replace all occurrences of one specified Binary with another in this Binary object.
    boolean
    BinaryLongMap.replace(Binary binKey, long lValueOld, long lValueNew)
    Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.
    boolean
    BinaryRadixTree.replace(Binary binKey, long lValueOld, long lValueNew)
    Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.
    boolean
    MultiBinaryLongMap.DelegatingBinaryLongMap.replace(Binary binKey, long lValueOld, long lValueNew)
    Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.
    boolean
    MultiBinaryLongMap.MaskedBinaryLongMap.replace(Binary binKey, long lValueOld, long lValueNew)
    Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.
    boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.replace(Binary binKey, long lValueOld, long lValueNew)
    Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.
    boolean
    MultiBinaryLongMap.PrimaryBinaryLongMap.replace(Binary binKey, long lValueOld, long lValueNew)
    Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.
    boolean
    MultiBinaryLongMap.SafeBinaryLongMap.replace(Binary binKey, long lValueOld, long lValueNew)
    Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.
    boolean
    MultiBinaryLongMap.WrapperBinaryLongMap.replace(Binary binKey, long lValueOld, long lValueNew)
    Store the passed "new" value for the specified key, only if the current value associated with the specified key is the same as the specified "old" value.
    Binary.replaceRegion(int of, int cb, Binary binNew)
    Replace a region within this Binary with another Binary.
    boolean
    Binary.startsWith(Binary bin)
    Tests if this Binary object starts with the specified prefix.
    boolean
    Binary.startsWith(Binary bin, int ofFrom)
    Tests if this Binary object starts with the specified prefix beginning a specified offset.
    static Binary
    ExternalizableHelper.undecorate(Binary bin, int nId)
    Deprecated.
    as of Coherence 3.7.2
    void
    BinaryEntry.updateBinaryValue(Binary binValue)
    Update the binary value for this entry.
    void
    BinaryEntry.updateBinaryValue(Binary binValue, boolean fSynthetic)
    Update the binary value for this entry.
    void
    ConverterCollections.ConverterMapEvent.ConverterMapEventBinaryEntry.updateBinaryValue(Binary binValue)
    Update the binary value for this entry.
    void
    ConverterCollections.ConverterMapEvent.ConverterMapEventBinaryEntry.updateBinaryValue(Binary binValue, boolean fSynthetic)
    Update the binary value for this entry.
    void
    InvocableMapHelper.RoutingBinaryEntry.updateBinaryValue(Binary binValue)
     
    void
    InvocableMapHelper.RoutingBinaryEntry.updateBinaryValue(Binary binValue, boolean fSynthetic)
     
    void
    BinaryLongMap.visit(Binary binKey, BinaryLongMap.EntryVisitor visitor)
    Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.
    void
    BinaryRadixTree.visit(Binary binKey, BinaryLongMap.EntryVisitor visitor)
    Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.
    void
    MultiBinaryLongMap.AbstractDelegateBinaryLongMap.visit(Binary binKey, BinaryLongMap.EntryVisitor visitor)
    Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.
    void
    MultiBinaryLongMap.MaskedBinaryLongMap.visit(Binary binKey, BinaryLongMap.EntryVisitor visitor)
    Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap.visit(Binary binKey, BinaryLongMap.EntryVisitor visitor)
    Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.
    void
    MultiBinaryLongMap.PrimaryBinaryLongMap.visit(Binary binKey, BinaryLongMap.EntryVisitor visitor)
    Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.
    void
    MultiBinaryLongMap.SafeBinaryLongMap.visit(Binary binKey, BinaryLongMap.EntryVisitor visitor)
    Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.
    void
    MultiBinaryLongMap.WrapperBinaryLongMap.visit(Binary binKey, BinaryLongMap.EntryVisitor visitor)
    Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.
    Constructors in com.tangosol.util with parameters of type Binary
    Modifier
    Constructor
    Description
     
    Binary(Binary that)
    Construct a Binary object from a Binary object.
    Constructor parameters in com.tangosol.util with type arguments of type Binary
    Modifier
    Constructor
    Description
     
    Construct a WrapperIterator.