Пример #1
0
        public BlackboardQuery(BlackboardAction vAction, int vFrom, int vTo)
        {
            senderID   = vFrom;
            receiverID = vTo;

            if (vAction != BlackboardAction.GetFromSpecificSender)
            {
                throw new ArgumentException("Action does not match arguments. You have to use BlackboardAction.GetFromSpecificSender in order to get this constructor working...");
            }

            action = vAction;
        }
Пример #2
0
        public BlackboardQuery(BlackboardAction vAction, int vFrom, int vTo)
        {
            senderID = vFrom;
            receiverID = vTo;

            if(vAction != BlackboardAction.GetFromSpecificSender)
            {
                throw new ArgumentException("Action does not match arguments. You have to use BlackboardAction.GetFromSpecificSender in order to get this constructor working...");
            }

            action = vAction;
        }
Пример #3
0
 public BlackboardQuery(BlackboardAction vAction, int vFrom, int vTo, string vMsg)
 {
     throw new NotImplementedException();
 }
Пример #4
0
 public BlackboardQuery(BlackboardAction vAction, int vFrom, int vTo, string vMsg)
 {
     throw new NotImplementedException();
 }