Class RangedSupplierDelegated<I extends Comparable<I>,P>

java.lang.Object
org.aksw.commons.util.delegate.AbstractDelegated<RangedSupplier<I,P>>
org.aksw.commons.rx.range.RangedSupplierDelegated<I,P>
Type Parameters:
I -
P -
All Implemented Interfaces:
Function<com.google.common.collect.Range<I>,io.reactivex.rxjava3.core.Flowable<P>>, RangedSupplier<I,P>, org.aksw.commons.util.delegate.Delegated<RangedSupplier<I,P>>, org.aksw.commons.util.delegate.Unwrappable
Direct Known Subclasses:
ListPaginatorWithSimpleCache

public abstract class RangedSupplierDelegated<I extends Comparable<I>,P> extends org.aksw.commons.util.delegate.AbstractDelegated<RangedSupplier<I,P>> implements RangedSupplier<I,P>
Base class for RangedSupplier implementations that decorate another RangedSupplier.
Author:
raven
  • Field Summary

    Fields inherited from class org.aksw.commons.util.delegate.AbstractDelegated

    delegate
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    io.reactivex.rxjava3.core.Flowable<P>
    apply(com.google.common.collect.Range<I> t)
     

    Methods inherited from class org.aksw.commons.util.delegate.AbstractDelegated

    delegate, equals, hashCode, toString

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface java.util.function.Function

    andThen, compose

    Methods inherited from interface org.aksw.commons.util.delegate.Unwrappable

    unwrap
  • Constructor Details

    • RangedSupplierDelegated

      public RangedSupplierDelegated(RangedSupplier<I,P> delegate)
  • Method Details

    • apply

      public io.reactivex.rxjava3.core.Flowable<P> apply(com.google.common.collect.Range<I> t)
      Specified by:
      apply in interface Function<I extends Comparable<I>,P>