Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeralsing committed Dec 10, 2023
1 parent 713de3d commit fc5119f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/Proto.Actor/ActorSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public ActorSystem(ActorSystemConfig config)
Guardians = new Guardians(this);
Metrics = new ProtoMetrics(config.MetricsEnabled);
EventStream = new EventStream(this);
ActorDispatcher = new ActorDispatcher(this);
var eventStream = new EventStreamProcess(this).Configure();
ProcessRegistry.TryAdd("$eventstream", eventStream);
Extensions = new ActorSystemExtensions(this);
Expand Down Expand Up @@ -90,11 +89,6 @@ public ActorSystem(ActorSystemConfig config)
/// Manages all processes in the actor system (actors, futures, event stream, etc.).
/// </summary>
public ProcessRegistry ProcessRegistry { get; }

/// <summary>
/// Dispatcher used to schedule messages via an actor.
/// </summary>
public IDispatcher ActorDispatcher { get; }

/// <summary>
/// Root context of the actor system. Use it to spawn actors or send messages from outside of an actor context.
Expand Down

0 comments on commit fc5119f

Please sign in to comment.