Class ReactiveVirtualList<E>

java.lang.Object
com.aerospike.mapper.tools.virtuallist.BaseVirtualList<E>
com.aerospike.mapper.tools.virtuallist.ReactiveVirtualList<E>
All Implemented Interfaces:
IReactiveVirtualList<E>

public class ReactiveVirtualList<E>
extends BaseVirtualList<E>
implements IReactiveVirtualList<E>
  • Constructor Summary

    Constructors
    Constructor Description
    ReactiveVirtualList​(@NotNull IReactiveAeroMapper reactiveAeroMapper, @NotNull Class<?> owningClazz, @NotNull Object key, @NotNull String binName, @NotNull Class<E> clazz)  
    ReactiveVirtualList​(@NotNull IReactiveAeroMapper reactiveAeroMapper, @NotNull Object object, @NotNull String binName, @NotNull Class<E> clazz)  
  • Method Summary

    Modifier and Type Method Description
    reactor.core.publisher.Mono<Long> append​(com.aerospike.client.policy.WritePolicy writePolicy, E element)
    Append a new element at the end of the virtual list.
    reactor.core.publisher.Mono<Long> append​(E element)
    Append a new element at the end of the virtual list.
    ReactiveMultiOperation<E> beginMulti​(com.aerospike.client.policy.WritePolicy writePolicy)  
    ReactiveMultiOperation<E> beginMultiOperation()  
    ReactiveVirtualList<E> changeKey​(Object newKey)  
    reactor.core.publisher.Mono<Void> clear()
    Remove all the items in the virtual list.
    reactor.core.publisher.Mono<E> get​(int index)
    Get an element from the virtual list at a specific index.
    reactor.core.publisher.Mono<E> get​(com.aerospike.client.policy.Policy policy, int index)
    Get an element from the virtual list at a specific index.
    reactor.core.publisher.Mono<E> getByIndexRange​(int index, int count, ReturnType returnResultsOfType)
    Get "count" items starting at specified index.
    reactor.core.publisher.Mono<E> getByIndexRange​(int index, ReturnType returnResultsOfType)
    Get items starting at specified index to the end of virtual list.
    reactor.core.publisher.Mono<E> getByIndexRange​(com.aerospike.client.policy.WritePolicy writePolicy, int index, int count, ReturnType returnResultsOfType)
    Get "count" items starting at specified index.
    reactor.core.publisher.Mono<E> getByIndexRange​(com.aerospike.client.policy.WritePolicy writePolicy, int index, ReturnType returnResultsOfType)
    Get items starting at specified index to the end of virtual list.
    reactor.core.publisher.Mono<E> getByKey​(com.aerospike.client.policy.WritePolicy writePolicy, Object key, ReturnType returnResultsOfType)
    Get items from the list matching the specified key.
    reactor.core.publisher.Mono<E> getByKey​(Object key, ReturnType returnResultsOfType)
    Get items from the list matching the specified key.
    reactor.core.publisher.Mono<E> getByKeyRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object startKey, Object endKey, ReturnType returnResultsOfType)
    Get items from the list matching the specified key range.
    reactor.core.publisher.Mono<E> getByKeyRange​(Object startKey, Object endKey, ReturnType returnResultsOfType)
    Get items from the list matching the specified key range.
    reactor.core.publisher.Mono<E> getByRank​(int rank, ReturnType returnResultsOfType)
    Get items identified by rank.
    reactor.core.publisher.Mono<E> getByRank​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, ReturnType returnResultsOfType)
    Get items identified by rank.
    reactor.core.publisher.Mono<E> getByRankRange​(int rank, int count, ReturnType returnResultsOfType)
    Get "count" items starting at specified rank to the last ranked item.
    reactor.core.publisher.Mono<E> getByRankRange​(int rank, ReturnType returnResultsOfType)
    Get items starting at specified rank to the last ranked item.
    reactor.core.publisher.Mono<E> getByRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, int count, ReturnType returnResultsOfType)
    Get "count" items starting at specified rank to the last ranked item.
    reactor.core.publisher.Mono<E> getByRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, ReturnType returnResultsOfType)
    Get items starting at specified rank to the last ranked item.
    reactor.core.publisher.Mono<E> getByValue​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, ReturnType returnResultsOfType)
    Get items from the list matching the specified value.
    reactor.core.publisher.Mono<E> getByValue​(Object value, ReturnType returnResultsOfType)
    Get items from the list matching the specified value.
    reactor.core.publisher.Mono<E> getByValueList​(com.aerospike.client.policy.WritePolicy writePolicy, List<Object> values, ReturnType returnResultsOfType)
    Get items from the list matching the specified list of values.
    reactor.core.publisher.Mono<E> getByValueList​(List<Object> values, ReturnType returnResultsOfType)
    Get items from the list matching the specified list of values.
    reactor.core.publisher.Mono<E> getByValueRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object startValue, Object endValue, ReturnType returnResultsOfType)
    Get items from the list matching the specified value.
    reactor.core.publisher.Mono<E> getByValueRange​(Object startValue, Object endValue, ReturnType returnResultsOfType)
    Get items from the list matching the specified value.
    reactor.core.publisher.Mono<E> getByValueRelativeRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, int rank, int count, ReturnType returnResultsOfType)
    Get items nearest to value and greater by relative rank with a count limit.
    reactor.core.publisher.Mono<E> getByValueRelativeRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, int rank, ReturnType returnResultsOfType)
    Get items nearest to value and greater by relative rank.
    reactor.core.publisher.Mono<E> getByValueRelativeRankRange​(Object value, int rank, int count, ReturnType returnResultsOfType)
    Get items nearest to value and greater by relative rank with a count limit.
    reactor.core.publisher.Mono<E> getByValueRelativeRankRange​(Object value, int rank, ReturnType returnResultsOfType)
    Get items nearest to value and greater by relative rank.
    reactor.core.publisher.Mono<E> removeByIndex​(int index, ReturnType returnResultsOfType)
    Remove item identified by index and returns removed data.
    reactor.core.publisher.Mono<E> removeByIndex​(com.aerospike.client.policy.WritePolicy writePolicy, int index, ReturnType returnResultsOfType)
    Remove item identified by index and returns removed data.
    reactor.core.publisher.Mono<E> removeByIndexRange​(int index, int count, ReturnType returnResultsOfType)
    Remove "count" items starting at specified index and returns removed data.
    reactor.core.publisher.Mono<E> removeByIndexRange​(int index, ReturnType returnResultsOfType)
    Remove items starting at specified index to the end of list and returns removed data.
    reactor.core.publisher.Mono<E> removeByIndexRange​(com.aerospike.client.policy.WritePolicy writePolicy, int index, int count, ReturnType returnResultsOfType)
    Remove "count" items starting at specified index and returns removed data.
    reactor.core.publisher.Mono<E> removeByIndexRange​(com.aerospike.client.policy.WritePolicy writePolicy, int index, ReturnType returnResultsOfType)
    Remove items starting at specified index to the end of list and returns removed data.
    reactor.core.publisher.Mono<E> removeByKey​(com.aerospike.client.policy.WritePolicy writePolicy, Object key, ReturnType returnResultsOfType)
    Remove items from the list matching the specified key.
    reactor.core.publisher.Mono<E> removeByKey​(Object key, ReturnType returnResultsOfType)
    Remove items from the list matching the specified key.
    reactor.core.publisher.Mono<E> removeByKeyRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object startKey, Object endKey, ReturnType returnResultsOfType)
    Remove items from the list matching the specified key.
    reactor.core.publisher.Mono<E> removeByKeyRange​(Object startKey, Object endKey, ReturnType returnResultsOfType)
    Remove items from the list matching the specified key.
    reactor.core.publisher.Mono<E> removeByRank​(int rank, ReturnType returnResultsOfType)
    Remove item identified by rank and returns removed data.
    reactor.core.publisher.Mono<E> removeByRank​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, ReturnType returnResultsOfType)
    Remove item identified by rank and returns removed data.
    reactor.core.publisher.Mono<E> removeByRankRange​(int rank, int count, ReturnType returnResultsOfType)
    Remove "count" items starting at specified rank and returns removed data.
    reactor.core.publisher.Mono<E> removeByRankRange​(int rank, ReturnType returnResultsOfType)
    Remove items starting at specified rank to the last ranked item and returns removed data.
    reactor.core.publisher.Mono<E> removeByRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, int count, ReturnType returnResultsOfType)
    Remove "count" items starting at specified rank and returns removed data.
    reactor.core.publisher.Mono<E> removeByRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, ReturnType returnResultsOfType)
    Remove items starting at specified rank to the last ranked item and returns removed data.
    reactor.core.publisher.Mono<E> removeByValue​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, ReturnType returnResultsOfType)
    Remove items identified by value and returns the removed data.
    reactor.core.publisher.Mono<E> removeByValue​(Object value, ReturnType returnResultsOfType)
    Remove items identified by value and returns the removed data.
    reactor.core.publisher.Mono<E> removeByValueList​(com.aerospike.client.policy.WritePolicy writePolicy, List<Object> values, ReturnType returnResultsOfType)
    Remove items identified by list of values and returns the removed data.
    reactor.core.publisher.Mono<E> removeByValueList​(List<Object> values, ReturnType returnResultsOfType)
    Remove items identified by list of values and returns the removed data.
    reactor.core.publisher.Mono<E> removeByValueRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object startValue, Object endValue, ReturnType returnResultsOfType)
    Remove items from the list matching the specified value.
    reactor.core.publisher.Mono<E> removeByValueRange​(Object startValue, Object endValue, ReturnType returnResultsOfType)
    Remove items from the list matching the specified value.
    reactor.core.publisher.Mono<E> removeByValueRelativeRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, int rank, int count, ReturnType returnResultsOfType)
    Remove items nearest to value and greater by relative rank with a count limit.
    reactor.core.publisher.Mono<E> removeByValueRelativeRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, int rank, ReturnType returnResultsOfType)
    Remove items nearest to value and greater by relative rank.
    reactor.core.publisher.Mono<E> removeByValueRelativeRankRange​(Object value, int rank, int count, ReturnType returnResultsOfType)
    Remove items nearest to value and greater by relative rank with a count limit.
    reactor.core.publisher.Mono<E> removeByValueRelativeRankRange​(Object value, int rank, ReturnType returnResultsOfType)
    Remove items nearest to value and greater by relative rank.
    reactor.core.publisher.Mono<Long> size​(com.aerospike.client.policy.Policy policy)
    Get the size of the virtual list (number of elements)

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ReactiveVirtualList

      public ReactiveVirtualList​(@NotNull @NotNull IReactiveAeroMapper reactiveAeroMapper, @NotNull @NotNull Class<?> owningClazz, @NotNull @NotNull Object key, @NotNull @NotNull String binName, @NotNull @NotNull Class<E> clazz)
    • ReactiveVirtualList

      public ReactiveVirtualList​(@NotNull @NotNull IReactiveAeroMapper reactiveAeroMapper, @NotNull @NotNull Object object, @NotNull @NotNull String binName, @NotNull @NotNull Class<E> clazz)
  • Method Details

    • changeKey

      public ReactiveVirtualList<E> changeKey​(Object newKey)
    • beginMultiOperation

      public ReactiveMultiOperation<E> beginMultiOperation()
    • beginMulti

      public ReactiveMultiOperation<E> beginMulti​(com.aerospike.client.policy.WritePolicy writePolicy)
    • getByValue

      public reactor.core.publisher.Mono<E> getByValue​(Object value, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified value.
      Specified by:
      getByValue in interface IReactiveVirtualList<E>
      Parameters:
      value - The value to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given value.
    • getByValue

      public reactor.core.publisher.Mono<E> getByValue​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified value.
      Specified by:
      getByValue in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      value - The value to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given value.
    • getByValueRange

      public reactor.core.publisher.Mono<E> getByValueRange​(Object startValue, Object endValue, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified value. If the list is mapped to a MAP in Aerospike, the start value and end value will dictate the range of values to get, inclusive of the start, exclusive of the end.

      If the list is mapped to a LIST in Aerospike however, the start and end range represent values to get from the list.

      Specified by:
      getByValueRange in interface IReactiveVirtualList<E>
      Parameters:
      startValue - Start value of the range to get.
      endValue - End value of the range to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given value range.
    • getByValueRange

      public reactor.core.publisher.Mono<E> getByValueRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object startValue, Object endValue, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified value. If the list is mapped to a MAP in Aerospike, the start value and end value will dictate the range of values to get, inclusive of the start, exclusive of the end.

      If the list is mapped to a LIST in Aerospike however, the start and end range represent values to get from the list.

      Specified by:
      getByValueRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      startValue - Start value of the range to get.
      endValue - End value of the range to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given value range.
    • getByValueList

      public reactor.core.publisher.Mono<E> getByValueList​(List<Object> values, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified list of values.
      Specified by:
      getByValueList in interface IReactiveVirtualList<E>
      Parameters:
      values - The list of values to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given list of values.
    • getByValueList

      public reactor.core.publisher.Mono<E> getByValueList​(com.aerospike.client.policy.WritePolicy writePolicy, List<Object> values, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified list of values.
      Specified by:
      getByValueList in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      values - The list of values to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given list of values.
    • getByValueRelativeRankRange

      public reactor.core.publisher.Mono<E> getByValueRelativeRankRange​(Object value, int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items nearest to value and greater by relative rank.
      Specified by:
      getByValueRelativeRankRange in interface IReactiveVirtualList<E>
      Parameters:
      value - The value to base the relative rank range calculation on.
      rank - The relative rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of records that matches the given value and rank.
    • getByValueRelativeRankRange

      public reactor.core.publisher.Mono<E> getByValueRelativeRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items nearest to value and greater by relative rank.
      Specified by:
      getByValueRelativeRankRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      value - The value to base the relative rank range calculation on.
      rank - The relative rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of records that matches the given value and rank.
    • getByValueRelativeRankRange

      public reactor.core.publisher.Mono<E> getByValueRelativeRankRange​(Object value, int rank, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items nearest to value and greater by relative rank with a count limit.
      Specified by:
      getByValueRelativeRankRange in interface IReactiveVirtualList<E>
      Parameters:
      value - The value to base the relative rank range calculation on.
      rank - The relative rank.
      count - The count limit.
      returnResultsOfType - Type to return.
      Returns:
      A list of records that matches the given value, rank and count.
    • getByValueRelativeRankRange

      public reactor.core.publisher.Mono<E> getByValueRelativeRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, int rank, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items nearest to value and greater by relative rank with a count limit.
      Specified by:
      getByValueRelativeRankRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      value - The value to base the relative rank range calculation on.
      rank - The relative rank.
      count - The count limit.
      returnResultsOfType - Type to return.
      Returns:
      A list of records that matches the given value, rank and count.
    • getByIndexRange

      public reactor.core.publisher.Mono<E> getByIndexRange​(int index, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items starting at specified index to the end of virtual list.
      Specified by:
      getByIndexRange in interface IReactiveVirtualList<E>
      Parameters:
      index - The start index to get items from to the end of the virtual list.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given index.
    • getByIndexRange

      public reactor.core.publisher.Mono<E> getByIndexRange​(com.aerospike.client.policy.WritePolicy writePolicy, int index, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items starting at specified index to the end of virtual list.
      Specified by:
      getByIndexRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      index - The start index to get items from to the end of the virtual list.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given index.
    • getByIndexRange

      public reactor.core.publisher.Mono<E> getByIndexRange​(int index, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get "count" items starting at specified index.
      Specified by:
      getByIndexRange in interface IReactiveVirtualList<E>
      Parameters:
      index - The start index to get the "count" items from.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given index and count.
    • getByIndexRange

      public reactor.core.publisher.Mono<E> getByIndexRange​(com.aerospike.client.policy.WritePolicy writePolicy, int index, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get "count" items starting at specified index.
      Specified by:
      getByIndexRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      index - The start index to get the "count" items from.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given index and count.
    • getByRank

      public reactor.core.publisher.Mono<E> getByRank​(int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items identified by rank.
      Specified by:
      getByRank in interface IReactiveVirtualList<E>
      Parameters:
      rank - The rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given rank.
    • getByRank

      public reactor.core.publisher.Mono<E> getByRank​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items identified by rank.
      Specified by:
      getByRank in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      rank - The rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given rank.
    • getByRankRange

      public reactor.core.publisher.Mono<E> getByRankRange​(int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items starting at specified rank to the last ranked item.
      Specified by:
      getByRankRange in interface IReactiveVirtualList<E>
      Parameters:
      rank - The starting rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given rank.
    • getByRankRange

      public reactor.core.publisher.Mono<E> getByRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items starting at specified rank to the last ranked item.
      Specified by:
      getByRankRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      rank - The starting rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given rank.
    • getByRankRange

      public reactor.core.publisher.Mono<E> getByRankRange​(int rank, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get "count" items starting at specified rank to the last ranked item.
      Specified by:
      getByRankRange in interface IReactiveVirtualList<E>
      Parameters:
      rank - The starting rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given rank and count.
    • getByRankRange

      public reactor.core.publisher.Mono<E> getByRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get "count" items starting at specified rank to the last ranked item.
      Specified by:
      getByRankRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      rank - The starting rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given rank and count.
    • getByKey

      public reactor.core.publisher.Mono<E> getByKey​(Object key, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified key. If the list is mapped to a MAP in Aerospike, It will get the matching key.

      If the list is mapped to a LIST in Aerospike however, it will get the matching value.

      Specified by:
      getByKey in interface IReactiveVirtualList<E>
      Parameters:
      key - Key to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given key range.
    • getByKey

      public reactor.core.publisher.Mono<E> getByKey​(com.aerospike.client.policy.WritePolicy writePolicy, Object key, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified key. If the list is mapped to a MAP in Aerospike, It will get the matching key.

      If the list is mapped to a LIST in Aerospike however, it will get the matching value.

      Specified by:
      getByKey in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      key - Key to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given key range.
    • getByKeyRange

      public reactor.core.publisher.Mono<E> getByKeyRange​(Object startKey, Object endKey, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified key range. If the list is mapped to a MAP in Aerospike, the start key and end key will dictate the range of keys to get, inclusive of the start, exclusive of the end.

      If the list is mapped to a LIST in Aerospike however, the start and end range represent values to get from the list.

      Specified by:
      getByKeyRange in interface IReactiveVirtualList<E>
      Parameters:
      startKey - Start key of the range to get.
      endKey - End key of the range to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given key range.
    • getByKeyRange

      public reactor.core.publisher.Mono<E> getByKeyRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object startKey, Object endKey, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Get items from the list matching the specified key range. If the list is mapped to a MAP in Aerospike, the start key and end key will dictate the range of keys to get, inclusive of the start, exclusive of the end.

      If the list is mapped to a LIST in Aerospike however, the start and end range represent values to get from the list.

      Specified by:
      getByKeyRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      startKey - Start key of the range to get.
      endKey - End key of the range to get.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which match the given key range.
    • removeByKey

      public reactor.core.publisher.Mono<E> removeByKey​(Object key, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items from the list matching the specified key. If the list is mapped to a MAP in Aerospike, the key will dictate the map key to be removed.

      If the list is mapped to a LIST in Aerospike however, the given key will use as the value to remove from the list.

      Specified by:
      removeByKey in interface IReactiveVirtualList<E>
      Parameters:
      key - Key to remove.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByKey

      public reactor.core.publisher.Mono<E> removeByKey​(com.aerospike.client.policy.WritePolicy writePolicy, Object key, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items from the list matching the specified key. If the list is mapped to a MAP in Aerospike, the key will dictate the map key to be removed.

      If the list is mapped to a LIST in Aerospike however, the given key will use as the value to remove from the list.

      Specified by:
      removeByKey in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      key - Key to remove.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValue

      public reactor.core.publisher.Mono<E> removeByValue​(Object value, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items identified by value and returns the removed data.
      Specified by:
      removeByValue in interface IReactiveVirtualList<E>
      Parameters:
      value - The value to base the items to remove on.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValue

      public reactor.core.publisher.Mono<E> removeByValue​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items identified by value and returns the removed data.
      Specified by:
      removeByValue in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      value - The value to base the items to remove on.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValueList

      public reactor.core.publisher.Mono<E> removeByValueList​(List<Object> values, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items identified by list of values and returns the removed data.
      Specified by:
      removeByValueList in interface IReactiveVirtualList<E>
      Parameters:
      values - The list of values to base the items to remove on.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValueList

      public reactor.core.publisher.Mono<E> removeByValueList​(com.aerospike.client.policy.WritePolicy writePolicy, List<Object> values, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items identified by list of values and returns the removed data.
      Specified by:
      removeByValueList in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      values - The list of values to base the items to remove on.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValueRange

      public reactor.core.publisher.Mono<E> removeByValueRange​(Object startValue, Object endValue, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items from the list matching the specified value. If the list is mapped to a MAP in Aerospike, the start value and end value will dictate the range of values to be removed, inclusive of the start, exclusive of the end.

      If the list is mapped to a LIST in Aerospike however, the start and end range represent values to removed from the list.

      Specified by:
      removeByValueRange in interface IReactiveVirtualList<E>
      Parameters:
      startValue - Start value of the range to remove.
      endValue - End value of the range to remove.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValueRange

      public reactor.core.publisher.Mono<E> removeByValueRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object startValue, Object endValue, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items from the list matching the specified value. If the list is mapped to a MAP in Aerospike, the start value and end value will dictate the range of values to be removed, inclusive of the start, exclusive of the end.

      If the list is mapped to a LIST in Aerospike however, the start and end range represent values to be removed from the list.

      Specified by:
      removeByValueRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      startValue - Start value of the range to remove.
      endValue - End value of the range to remove.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValueRelativeRankRange

      public reactor.core.publisher.Mono<E> removeByValueRelativeRankRange​(Object value, int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items nearest to value and greater by relative rank.
      Specified by:
      removeByValueRelativeRankRange in interface IReactiveVirtualList<E>
      Parameters:
      value - The value to base the items to remove on.
      rank - The rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValueRelativeRankRange

      public reactor.core.publisher.Mono<E> removeByValueRelativeRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items nearest to value and greater by relative rank.
      Specified by:
      removeByValueRelativeRankRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      value - The value to base the items to remove on.
      rank - The rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValueRelativeRankRange

      public reactor.core.publisher.Mono<E> removeByValueRelativeRankRange​(Object value, int rank, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items nearest to value and greater by relative rank with a count limit.
      Specified by:
      removeByValueRelativeRankRange in interface IReactiveVirtualList<E>
      Parameters:
      value - The value to base the items to remove on.
      rank - The rank.
      count - The count limit.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByValueRelativeRankRange

      public reactor.core.publisher.Mono<E> removeByValueRelativeRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object value, int rank, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items nearest to value and greater by relative rank with a count limit.
      Specified by:
      removeByValueRelativeRankRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      value - The value to base the items to remove on.
      rank - The rank.
      count - The count limit.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByIndex

      public reactor.core.publisher.Mono<E> removeByIndex​(int index, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove item identified by index and returns removed data.
      Specified by:
      removeByIndex in interface IReactiveVirtualList<E>
      Parameters:
      index - The index to remove the item from.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByIndex

      public reactor.core.publisher.Mono<E> removeByIndex​(com.aerospike.client.policy.WritePolicy writePolicy, int index, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove item identified by index and returns removed data.
      Specified by:
      removeByIndex in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      index - The index to remove the item from.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByIndexRange

      public reactor.core.publisher.Mono<E> removeByIndexRange​(int index, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items starting at specified index to the end of list and returns removed data.
      Specified by:
      removeByIndexRange in interface IReactiveVirtualList<E>
      Parameters:
      index - The start index to remove the item from.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByIndexRange

      public reactor.core.publisher.Mono<E> removeByIndexRange​(com.aerospike.client.policy.WritePolicy writePolicy, int index, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items starting at specified index to the end of list and returns removed data.
      Specified by:
      removeByIndexRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      index - The start index to remove the item from.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByIndexRange

      public reactor.core.publisher.Mono<E> removeByIndexRange​(int index, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove "count" items starting at specified index and returns removed data.
      Specified by:
      removeByIndexRange in interface IReactiveVirtualList<E>
      Parameters:
      index - The start index to remove the item from.
      count - The count limit.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByIndexRange

      public reactor.core.publisher.Mono<E> removeByIndexRange​(com.aerospike.client.policy.WritePolicy writePolicy, int index, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove "count" items starting at specified index and returns removed data.
      Specified by:
      removeByIndexRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      index - The start index to remove the item from.
      count - The count limit.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByRank

      public reactor.core.publisher.Mono<E> removeByRank​(int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove item identified by rank and returns removed data.
      Specified by:
      removeByRank in interface IReactiveVirtualList<E>
      Parameters:
      rank - The rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByRank

      public reactor.core.publisher.Mono<E> removeByRank​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove item identified by rank and returns removed data.
      Specified by:
      removeByRank in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      rank - The rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByRankRange

      public reactor.core.publisher.Mono<E> removeByRankRange​(int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items starting at specified rank to the last ranked item and returns removed data.
      Specified by:
      removeByRankRange in interface IReactiveVirtualList<E>
      Parameters:
      rank - The starting rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByRankRange

      public reactor.core.publisher.Mono<E> removeByRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items starting at specified rank to the last ranked item and returns removed data.
      Specified by:
      removeByRankRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      rank - The starting rank.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByRankRange

      public reactor.core.publisher.Mono<E> removeByRankRange​(int rank, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove "count" items starting at specified rank and returns removed data.
      Specified by:
      removeByRankRange in interface IReactiveVirtualList<E>
      Parameters:
      rank - The starting rank.
      count - The count limit.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByRankRange

      public reactor.core.publisher.Mono<E> removeByRankRange​(com.aerospike.client.policy.WritePolicy writePolicy, int rank, int count, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove "count" items starting at specified rank and returns removed data.
      Specified by:
      removeByRankRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      rank - The starting rank.
      count - The count limit.
      returnResultsOfType - Type to return.
      Returns:
      A list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByKeyRange

      public reactor.core.publisher.Mono<E> removeByKeyRange​(Object startKey, Object endKey, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items from the list matching the specified key. If the list is mapped to a MAP in Aerospike, the start key and end key will dictate the range of keys to be removed, inclusive of the start, exclusive of the end.

      If the list is mapped to a LIST in Aerospike however, the start and end range represent values to be removed from the list.

      Specified by:
      removeByKeyRange in interface IReactiveVirtualList<E>
      Parameters:
      startKey - Start key of the range to remove.
      endKey - End key of the range to remove.
      returnResultsOfType - Type to return.
      Returns:
      The result of the method is a list of the records which have been removed from the database if returnResults is true, null otherwise.
    • removeByKeyRange

      public reactor.core.publisher.Mono<E> removeByKeyRange​(com.aerospike.client.policy.WritePolicy writePolicy, Object startKey, Object endKey, ReturnType returnResultsOfType)
      Description copied from interface: IReactiveVirtualList
      Remove items from the list matching the specified key. If the list is mapped to a MAP in Aerospike, the start key and end key will dictate the range of keys to be removed, inclusive of the start, exclusive of the end.

      If the list is mapped to a LIST in Aerospike however, the start and end range represent values to be removed from the list.

      Specified by:
      removeByKeyRange in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      startKey - Start key of the range to remove.
      endKey - End key of the range to remove.
      returnResultsOfType - Type to return.
      Returns:
      The result of the method is a list of the records which have been removed from the database if returnResults is true, null otherwise.
    • append

      public reactor.core.publisher.Mono<Long> append​(E element)
      Description copied from interface: IReactiveVirtualList
      Append a new element at the end of the virtual list.
      Specified by:
      append in interface IReactiveVirtualList<E>
      Parameters:
      element - The given element to append.
      Returns:
      The list size.
    • append

      public reactor.core.publisher.Mono<Long> append​(com.aerospike.client.policy.WritePolicy writePolicy, E element)
      Description copied from interface: IReactiveVirtualList
      Append a new element at the end of the virtual list.
      Specified by:
      append in interface IReactiveVirtualList<E>
      Parameters:
      writePolicy - An Aerospike write policy to use for the operate() operation.
      element - The given element to append.
      Returns:
      The size of the list. If the record is not found, this method returns -1.
    • get

      public reactor.core.publisher.Mono<E> get​(int index)
      Description copied from interface: IReactiveVirtualList
      Get an element from the virtual list at a specific index.
      Specified by:
      get in interface IReactiveVirtualList<E>
      Parameters:
      index - The index to get the item from.
      Returns:
      The element to get from the virtual list.
    • get

      public reactor.core.publisher.Mono<E> get​(com.aerospike.client.policy.Policy policy, int index)
      Description copied from interface: IReactiveVirtualList
      Get an element from the virtual list at a specific index.
      Specified by:
      get in interface IReactiveVirtualList<E>
      Parameters:
      policy - - The policy to use for the operate() operation.
      index - The index to get the item from.
      Returns:
      The element to get from the virtual list.
    • size

      public reactor.core.publisher.Mono<Long> size​(com.aerospike.client.policy.Policy policy)
      Description copied from interface: IReactiveVirtualList
      Get the size of the virtual list (number of elements)
      Specified by:
      size in interface IReactiveVirtualList<E>
      Parameters:
      policy - - The policy to use for the operate() operation.
      Returns:
      The size of the list. If the record is not found, this method returns -1.
    • clear

      public reactor.core.publisher.Mono<Void> clear()
      Description copied from interface: IReactiveVirtualList
      Remove all the items in the virtual list.
      Specified by:
      clear in interface IReactiveVirtualList<E>