private static void Remove(this ActorLocationSenderComponent self, long id)
 {
     if (!self.Children.TryGetValue(id, out Entity actorMessageSender))
     {
         return;
     }
     actorMessageSender.Dispose();
 }
Esempio n. 2
0
 public static void Remove(this ActorLocationSenderComponent self, long id)
 {
     if (!self.ActorLocationSenders.TryGetValue(id, out ActorLocationSender actorMessageSender))
     {
         return;
     }
     self.ActorLocationSenders.Remove(id);
     actorMessageSender.Dispose();
 }
        private static ActorLocationSender Get(this ActorLocationSenderComponent self, long id)
        {
            if (id == 0)
            {
                throw new Exception($"actor id is 0");
            }
            if (self.Children.TryGetValue(id, out Entity actorLocationSender))
            {
                return((ActorLocationSender)actorLocationSender);
            }

            actorLocationSender        = EntityFactory.CreateWithId <ActorLocationSender>(self.Domain, id);
            actorLocationSender.Parent = self;
            return((ActorLocationSender)actorLocationSender);
        }
Esempio n. 4
0
        public static async ETTask <ActorLocationSender> Get(this ActorLocationSenderComponent self, long id)
        {
            if (id == 0)
            {
                throw new Exception($"actor id is 0");
            }
            if (self.ActorLocationSenders.TryGetValue(id, out ActorLocationSender actorLocationSender))
            {
                return(actorLocationSender);
            }

            actorLocationSender        = ComponentFactory.CreateWithId <ActorLocationSender>(id);
            actorLocationSender.Parent = self;
            await actorLocationSender.GetActorId();

            self.ActorLocationSenders[id] = actorLocationSender;
            return(actorLocationSender);
        }
        public static void Check(this ActorLocationSenderComponent self)
        {
            using (ListComponent <long> list = EntityFactory.Create <ListComponent <long> >(self.Domain))
            {
                long timeNow = TimeHelper.Now();
                foreach ((long key, Entity value) in self.Children)
                {
                    ActorLocationSender actorLocationMessageSender = (ActorLocationSender)value;

                    if (timeNow > actorLocationMessageSender.LastSendOrRecvTime + ActorLocationSenderComponent.TIMEOUT_TIME)
                    {
                        list.List.Add(key);
                    }
                }

                foreach (long id in list.List)
                {
                    self.Remove(id);
                }
            }
        }
        public static async ETTask <IActorResponse> Call(this ActorLocationSenderComponent self, long entityId, IActorLocationRequest message)
        {
            ActorLocationSender actorLocationSender = self.Get(entityId);

            return(await actorLocationSender.Call(message));
        }
        public static void Send(this ActorLocationSenderComponent self, long entityId, IActorLocationMessage message)
        {
            ActorLocationSender actorLocationSender = self.Get(entityId);

            actorLocationSender.Send(message);
        }