pekko/akka-actor/src/main/scala/akka/event/EventBusJavaAPI.scala

19 lines
461 B
Scala
Raw Normal View History

package akka.event.japi
import akka.event._
abstract class LookupEventBus[E, S, C] extends EventBus with LookupClassification {
type Event = E
type Subscriber = S
type Classifier = C
}
abstract class ScanningEventBus[E, S, C] extends EventBus with ScanningClassification {
type Event = E
type Subscriber = S
type Classifier = C
}
abstract class ActorEventBus[E] extends akka.event.ActorEventBus with ActorClassification with ActorClassifier {
}