File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ namespace Akka.Remote
129129 void Reset();
130130 }
131131 [Akka.Annotations.InternalApiAttribute()]
132+ public interface IInternalRemotingMessage { }
133+ [Akka.Annotations.InternalApiAttribute()]
132134 public interface IRemoteActorRefProvider : Akka.Actor.IActorRefProvider
133135 {
134136 Akka.Actor.IInternalActorRef RemoteDaemon { get; }
Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ namespace Akka.Remote
129129 void Reset();
130130 }
131131 [Akka.Annotations.InternalApiAttribute()]
132+ public interface IInternalRemotingMessage { }
133+ [Akka.Annotations.InternalApiAttribute()]
132134 public interface IRemoteActorRefProvider : Akka.Actor.IActorRefProvider
133135 {
134136 Akka.Actor.IInternalActorRef RemoteDaemon { get; }
Original file line number Diff line number Diff line change 1212using System . Linq ;
1313using Akka . Actor ;
1414using Akka . Actor . Internal ;
15+ using Akka . Annotations ;
1516using Akka . Dispatch . SysMsg ;
1617using Akka . Event ;
1718using Akka . Util ;
@@ -22,8 +23,15 @@ namespace Akka.Remote
2223{
2324 /// <summary>
2425 /// INTERNAL API
26+ /// Used to mark that a message is meant as a system call and should not be traced
2527 /// </summary>
26- internal interface IDaemonMsg { }
28+ [ InternalApi ]
29+ public interface IInternalRemotingMessage { }
30+
31+ /// <summary>
32+ /// INTERNAL API
33+ /// </summary>
34+ internal interface IDaemonMsg : IInternalRemotingMessage { }
2735
2836 /// <summary>
2937 /// INTERNAL API
You can’t perform that action at this time.
0 commit comments