object Tracked

Tracked type helper functions, using implicits to redirect to the correct TrackedSources, TrackedSinks, and TrackedMultiSinks.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tracked
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def exposeFuture[V, T[X] <: Tracked[X]](fut: T[Future[V]])(implicit exec: ExecutionContext): Future[T[V]]

    Expose a future contained within a Tracked wrapper,

    Expose a future contained within a Tracked wrapper,

    V

    Type of the future.

    T

    Tracked type of both input and output wrappers.

    fut

    Tracked wrapper containing a future.

    exec

    Execution context of the future.

    returns

    A future returning a Tracked type of the result of the original future.

  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def flatten[Msg, T[X] <: Tracked[X]](consuming: Seq[T[Msg]]): T[Seq[Msg]]

    Merge the tracking information of a sequence of Tracked wrappers.

    Merge the tracking information of a sequence of Tracked wrappers. NOTE: CONDITIONS APPLY! CHECK THE TRACKED CLASSES FOLD FUNCTION.

    Msg

    The type of the elements in the sequence.

    T

    Tracked type of both input and output wrappers.

    consuming

    A sequence of messages to combine.

    returns

    Tracked wrapper of type T containing a list of Msg objects.

  11. def fmap[T[X] <: Tracked[X], In, Out](fn: (In) ⇒ Out)(trackedIn: T[In]): T[Out]

    Map a function over the value within a tracked type.

    Map a function over the value within a tracked type.

    T

    Tracked type of both input and output wrappers.

    In

    Wrapped input type.

    Out

    Wrapped output type.

    fn

    Function apply to input wrapped value.

    trackedIn

    Tracked type containing input value.

    returns

    A new Tracked type (of type T) with value of the output of fn.

  12. def freplace[T[X] <: Tracked[X], In, Out](tracked: T[In])(newValue: Out): T[Out]

    Replace the value within a Tracked wrapper without updating the tracking information.

    Replace the value within a Tracked wrapper without updating the tracking information.

    T

    Tracked type of both input and output wrappers.

    In

    Wrapped input type.

    Out

    Wrapped output type.

    tracked

    The Tracked wrapper to modify.

    newValue

    The new value for the Tracked wrapper.

    returns

    A new Tracked object of type T, containing newValue and the tracking from tracked.

  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. def sink[T[X] <: Tracked[X], V <: AnyMsg](implicit s: KafkaExecutorEnvironment, ts: TrackedSink[T]): Sink[T[V], Future[Done]]
  20. def sinkMulti[T[X] <: Tracked[X], V <: AnyMsg](implicit s: KafkaExecutorEnvironment, ts: TrackedMultiSink[T]): Sink[T[Seq[V]], Future[Done]]
  21. def source[T[X] <: Tracked[X], V](cs: ConsumerSettings[_, V], sub: AutoSubscription)(implicit s: KafkaExecutorEnvironment, ts: TrackedSource[T]): Source[T[V], Control]
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped