Package jade.lang.acl

Examples of jade.lang.acl.ConversationList


  private Logger logger;
 
  public DFIteratedSearchManagementBehaviour(df theDF, MessageTemplate mt) {
    super(theDF);
    this.theDF = theDF;
    conversations = new ConversationList(theDF);
    template = MessageTemplate.and(mt, conversations.getMessageTemplate());
    logger = Logger.getMyLogger(theDF.getLocalName());
  }
View Full Code Here


  public void setMessageTemplate(MessageTemplate template) {
    this.template = template;
  }
 
  public void onStart() {
    ignoredConversations = new ConversationList(myAgent);
   
    // Unless a template is explicitly set, we get messages matching the ontology, the served performatives.
    if (template == null) {
      if (servedPerformatives != null) {
        template = MessageTemplate.and(
View Full Code Here

TOP

Related Classes of jade.lang.acl.ConversationList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.