예제 #1
0
        private void onDoSomethingMessage(IDoSomethingInner obj)
        {
            Console.WriteLine("Inner:onDoSomethingInner");
            IDoSomethingInnerResponse resp = new DoSomethingInnerResponse(this)
            {
                Result     = obj.a * obj.b,
                SessionUid = obj.SessionUid
            };

            _msgr.Publish <IDoSomethingInnerResponse>(resp);
        }
예제 #2
0
 private void onDoSomethingInner(IDoSomethingInner obj)
 {
     // throw new NotImplementedException();
 }