Skip to content

Commit 36f90e8

Browse files
committed
make internal
1 parent e488cab commit 36f90e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dotnet/src/Microsoft.AutoGen/Agents/Services/Orleans/RegistryGrain.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace Microsoft.AutoGen.Agents;
77

8-
public sealed class RegistryGrain : Grain, IRegistryGrain
8+
internal sealed class RegistryGrain : Grain, IRegistryGrain
99
{
1010
// TODO: use persistent state for some of these or (better) extend Orleans to implement some of this natively.
1111
private readonly Dictionary<IGateway, WorkerState> _workerStates = new();

dotnet/src/Microsoft.AutoGen/Agents/Services/Orleans/SubscriptionsGrain.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace Microsoft.AutoGen.Agents;
55

6-
public sealed class SubscriptionsGrain([PersistentState("state", "PubSubStore")] IPersistentState<SubscriptionsState> state) : Grain, ISubscriptionsGrain
6+
internal sealed class SubscriptionsGrain([PersistentState("state", "PubSubStore")] IPersistentState<SubscriptionsState> state) : Grain, ISubscriptionsGrain
77
{
88
private readonly Dictionary<string, List<string>> _subscriptions = new();
99
public ValueTask<Dictionary<string, List<string>>> GetSubscriptions(string agentType)

0 commit comments

Comments
 (0)