Class DefaultMaskedTupleMemory<Timestamp extends java.lang.Comparable<Timestamp>>

    • Field Detail

      • signatureToTuples

        protected IMultiLookup<Tuple,​Tuple> signatureToTuples
        Maps a signature tuple to the bucket of tuples with the given signature.
        Since:
        2.0
    • Constructor Detail

      • DefaultMaskedTupleMemory

        public DefaultMaskedTupleMemory​(TupleMask mask,
                                        CollectionsFactory.MemoryType bucketType,
                                        java.lang.Object owner)
        Parameters:
        mask - The mask used to index the matchings
        owner - the object "owning" this memory
        bucketType - the kind of tuple collection maintained for each indexer bucket
        Since:
        2.0
    • Method Detail

      • add

        public boolean add​(Tuple tuple)
        Description copied from class: MaskedTupleMemory
        Adds a tuple occurrence to the memory.
        Overrides:
        add in class MaskedTupleMemory<Timestamp extends java.lang.Comparable<Timestamp>>
        Parameters:
        tuple - the tuple to be added to the memory
        Returns:
        true if new signature encountered (according to the mask)
      • add

        public boolean add​(Tuple tuple,
                           Tuple signature)
        Description copied from class: MaskedTupleMemory
        Adds a tuple occurrence to the memory with the given signature.
        Overrides:
        add in class MaskedTupleMemory<Timestamp extends java.lang.Comparable<Timestamp>>
        Parameters:
        tuple - the tuple to be added to the memory
        signature - precomputed footprint of the tuple according to the mask
        Returns:
        true if new signature encountered (according to the mask)
      • remove

        public boolean remove​(Tuple tuple)
        Description copied from class: MaskedTupleMemory
        Removes a tuple occurrence from the memory.
        Overrides:
        remove in class MaskedTupleMemory<Timestamp extends java.lang.Comparable<Timestamp>>
        Parameters:
        tuple - the tuple to be removed from the memory
        Returns:
        true if this was the the last occurrence of the signature (according to the mask)
      • remove

        public boolean remove​(Tuple tuple,
                              Tuple signature)
        Description copied from class: MaskedTupleMemory
        Removes a tuple occurrence from the memory with the given signature.
        Overrides:
        remove in class MaskedTupleMemory<Timestamp extends java.lang.Comparable<Timestamp>>
        Parameters:
        tuple - the tuple to be removed from the memory
        signature - precomputed footprint of the tuple according to the mask
        Returns:
        true if this was the the last occurrence of the signature (according to the mask)
      • clear

        public void clear()
        Description copied from interface: Clearable
        Clear all partial matchings stored in memory
      • getTotalSize

        public int getTotalSize()
        Specified by:
        getTotalSize in class MaskedTupleMemory<Timestamp extends java.lang.Comparable<Timestamp>>
        Returns:
        the total number of distinct tuples stored. Multiple copies of the same tuple, if allowed, are counted as one.

        This is currently not cached but computed on demand. It is therefore not efficient, and shall only be used for debug / profiling purposes.