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
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- Operator
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
- abstract val bufferSize: Int
- abstract val context: OperatorContext
-
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
- abstract def processEvent(event: TypedWatchEvent[T]): ZIO[R, OperatorFailure[E], Unit]
Concrete Value Members
-
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
-
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
-
final
def
provideSomeLayer[R0 <: ZEnvironment[_]]: ProvideSomeLayer[R0, R, E, T]
Provide parts of the required environment for the operator with a layer
-
def
start(): URIO[R, Runtime[Nothing, Unit]]
Starts the operator on a forked fiber
-
def
stream(): ZStream[R, OperatorFailure[E], Unit]
Exposes stream
- implicit def toThrowable: ConvertableToThrowable[E]