Packages

c

com.coralogix.zio.k8s.operator

NamespacedOperator

final class NamespacedOperator[R, E, T] extends Operator[R, E, T]

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

Instance Constructors

  1. new NamespacedOperator(client: NamespacedResource[T], namespace: Option[K8sNamespace], eventProcessor: EventProcessor[R, E, T], context: OperatorContext, bufferSize: Int)

Value Members

  1. val bufferSize: Int
    Definition Classes
    NamespacedOperatorOperator
  2. val context: OperatorContext
    Definition Classes
    NamespacedOperatorOperator
  3. 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

    Modify the operator's event processor with the given function

    Definition Classes
    NamespacedOperatorOperator
  4. def processEvent(event: TypedWatchEvent[T]): ZIO[R, OperatorFailure[E], Unit]
    Definition Classes
    NamespacedOperatorOperator
  5. 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

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

    Definition Classes
    Operator
  6. 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

    Provide the required environment for the operator with a layer

    Definition Classes
    Operator
  7. final def provideSomeLayer[R0 <: ZEnvironment[_]]: ProvideSomeLayer[R0, R, E, T]

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

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

    Definition Classes
    Operator
  8. def start(): URIO[R, Runtime[Nothing, Unit]]

    Starts the operator on a forked fiber

    Starts the operator on a forked fiber

    Definition Classes
    Operator
  9. def stream(): ZStream[R, OperatorFailure[E], Unit]

    Exposes stream

    Exposes stream

    Definition Classes
    Operator
  10. implicit def toThrowable: ConvertableToThrowable[E]
    Definition Classes
    Operator