Interface RLexSortedSetReactive

    • Method Detail

      • removeRange

        org.reactivestreams.Publisher<Integer> removeRange​(String fromElement,
                                                           boolean fromInclusive,
                                                           String toElement,
                                                           boolean toInclusive)
      • removeRangeTail

        org.reactivestreams.Publisher<Integer> removeRangeTail​(String fromElement,
                                                               boolean fromInclusive)
      • removeRangeHead

        org.reactivestreams.Publisher<Integer> removeRangeHead​(String toElement,
                                                               boolean toInclusive)
      • countTail

        org.reactivestreams.Publisher<Integer> countTail​(String fromElement,
                                                         boolean fromInclusive)
      • countHead

        org.reactivestreams.Publisher<Integer> countHead​(String toElement,
                                                         boolean toInclusive)
      • rangeTail

        org.reactivestreams.Publisher<Collection<String>> rangeTail​(String fromElement,
                                                                    boolean fromInclusive)
      • rangeHead

        org.reactivestreams.Publisher<Collection<String>> rangeHead​(String toElement,
                                                                    boolean toInclusive)
      • range

        org.reactivestreams.Publisher<Collection<String>> range​(String fromElement,
                                                                boolean fromInclusive,
                                                                String toElement,
                                                                boolean toInclusive)
      • rangeTail

        org.reactivestreams.Publisher<Collection<String>> rangeTail​(String fromElement,
                                                                    boolean fromInclusive,
                                                                    int offset,
                                                                    int count)
      • rangeHead

        org.reactivestreams.Publisher<Collection<String>> rangeHead​(String toElement,
                                                                    boolean toInclusive,
                                                                    int offset,
                                                                    int count)
      • range

        org.reactivestreams.Publisher<Collection<String>> range​(String fromElement,
                                                                boolean fromInclusive,
                                                                String toElement,
                                                                boolean toInclusive,
                                                                int offset,
                                                                int count)
      • count

        org.reactivestreams.Publisher<Integer> count​(String fromElement,
                                                     boolean fromInclusive,
                                                     String toElement,
                                                     boolean toInclusive)