Fork changes

This commit is contained in:
Adam Hathcock
2024-05-21 16:30:10 +01:00
parent 95b5b15cb5
commit 5f92c81965
56 changed files with 2220 additions and 1614 deletions
@@ -1,3 +1,4 @@
using System.Diagnostics.CodeAnalysis;
using Akka.Actor;
using ProxyInterfaceConsumerForAkka.Interfaces;
@@ -5,12 +6,13 @@ namespace ProxyInterfaceConsumerForAkka;
public class Program
{
[SuppressMessage("ReSharper", "NullableWarningSuppressionIsUsed")]
public static void Main()
{
Akka.Remote.AddressUid auid = null;
Akka.Remote.AddressUid auid = null!;
IAddressUid addressUidProxy = new AddressUidProxy(auid);
LocalActorRefProvider p = null;
LocalActorRefProvider p = null!;
ILocalActorRefProvider proxy = new LocalActorRefProviderProxy(p);
}
}
}