Class RemoteMetadata

  • All Implemented Interfaces:
    Metadata

    @ProtoTypeId(1004)
    public class RemoteMetadata
    extends java.lang.Object
    implements Metadata
    This is a metadata type used by scattered cache during state transfer. The address points to node which has last known version of given entry: During key transfer RemoteMetadata is created and overwritten if another response with higher version comes. During value transfer the address is already final and we request the value + metadata only from this node.
    Author:
    Radim Vansa <rvansa@redhat.com>
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Metadata.Builder builder()
      Returns an instance of Metadata.Builder which can be used to build new instances of Metadata instance which are full copies of this Metadata.
      Address getAddress()  
      long lifespan()
      Returns the lifespan of the cache entry with which this metadata object is associated, in milliseconds.
      long maxIdle()
      Returns the the maximum amount of time that the cache entry associated with this metadata object is allowed to be idle for before it is considered as expired, in milliseconds.
      java.lang.String toString()  
      EntryVersion version()
      Returns the version of the cache entry with which this metadata object is associated.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Method Detail

      • lifespan

        public long lifespan()
        Description copied from interface: Metadata
        Returns the lifespan of the cache entry with which this metadata object is associated, in milliseconds. Negative values are interpreted as unlimited lifespan.
        Specified by:
        lifespan in interface Metadata
        Returns:
        lifespan of the entry in number of milliseconds
      • maxIdle

        public long maxIdle()
        Description copied from interface: Metadata
        Returns the the maximum amount of time that the cache entry associated with this metadata object is allowed to be idle for before it is considered as expired, in milliseconds.
        Specified by:
        maxIdle in interface Metadata
        Returns:
        maximum idle time of the entry in number of milliseconds
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object