Packages

trait Operator[R, E, T] extends AnyRef

Core implementation of the operator logic. Watches a stream and calls an event processor.

An instance of this is tied to one particular resource type in one namespace.

Create an instance using either Operator.namespaced() or Operator.cluster()

Self Type
Operator[R, E, T]
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Operator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val bufferSize: Int
  2. abstract val context: OperatorContext
  3. abstract def mapEventProcessor[R1, E1](f: (ZIO[R, OperatorFailure[E], Unit]) ⇒ ZIO[R1, OperatorFailure[E1], Unit]): Operator[R1, E1, T]

    Modify the operator's event processor with the given function

  4. abstract def processEvent(event: TypedWatchEvent[T]): ZIO[R, OperatorFailure[E], Unit]
  5. abstract def watchStream(): ZStream[Any, K8sFailure, TypedWatchEvent[T]]
    Attributes
    protected

Concrete 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() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def provideCustomLayer[E1 >: E, R1 <: ZEnvironment[_]](layer: ⇒ ZLayer[Any, OperatorFailure[E1], R1])(implicit ev: <:<[R1, R], tagged: zio.EnvironmentTag[R1]): Operator[Any, E1, T]

    Provide the required environment for the operator with a layer on top of the standard ones

  15. final def provideLayer[E1 >: E, R0, R1](layer: ⇒ ZLayer[R0, OperatorFailure[E1], R]): Operator[R0, E1, T]

    Provide the required environment for the operator with a layer

  16. final def provideSomeLayer[R0 <: ZEnvironment[_]]: ProvideSomeLayer[R0, R, E, T]

    Provide parts of the required environment for the operator with a layer

  17. def start(): URIO[R, Runtime[Nothing, Unit]]

    Starts the operator on a forked fiber

  18. def stream(): ZStream[R, OperatorFailure[E], Unit]

    Exposes stream

  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. implicit def toThrowable: ConvertableToThrowable[E]
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped