blob: 6869add3d3779264c54265fe2de64bd157ec5dd0 [file] [log] [blame]
package org.apache.servicecomb.pack.alpha.fsm.channel;
import akka.actor.ActorRef;
import akka.actor.ActorSystem;
import org.apache.servicecomb.pack.alpha.fsm.metrics.MetricsService;
public abstract class AbstractEventConsumer {
protected final MetricsService metricsService;
protected final ActorSystem actorSystem;
protected final ActorRef sagaShardRegionActor;
public AbstractEventConsumer(
ActorSystem actorSystem,
ActorRef sagaShardRegionActor, MetricsService metricsService) {
this.metricsService = metricsService;
this.actorSystem = actorSystem;
this.sagaShardRegionActor = sagaShardRegionActor;
}
}