예제 #1
0
        static void Main(string[] args)
        {
            // The Orleans silo environment is initialized in its own app domain in order to more
            // closely emulate the distributed situation, when the client and the server cannot
            // pass data via shared memory.
            AppDomain hostDomain = AppDomain.CreateDomain("OrleansHost", null, new AppDomainSetup
            {
                AppDomainInitializer          = InitSilo,
                AppDomainInitializerArguments = args,
            });

            Orleans.OrleansClient.Initialize("DevTestClientConfiguration.xml");

            // Observer

            IDoStuff grain = DoStuffFactory.GetGrain(0);

            var theObserver = new TheObserver();
            var obj         = ObserveFactory.CreateObjectReference(theObserver).Result; // factory from IObserve

            grain.SubscribeForUpdates(obj);


            // close down

            Console.WriteLine("Orleans Silo is running.\nPress Enter to terminate...");
            Console.ReadLine();

            hostDomain.DoCallBack(ShutdownSilo);
        }
예제 #2
0
 public void DeleteProxy(IObserve observer)
 {
     ObserveFactory.DeleteObjectReference(observer);
 }
예제 #3
0
 public async Task <IObserve> CreateProxy(IObserve client)
 {
     return(await ObserveFactory.CreateObjectReference(client));
 }