Package ise.mace.inputs

Examples of ise.mace.inputs.GroupInvite


    }

    @Override
    public void handle(Input input)
    {
      final GroupInvite in = (GroupInvite)input;

      onInvite(in.getGroup());
      logger.log(Level.FINE, "I, agent {0} was inivited to the new {1} group.",
              new Object[]
              {
                dm.getName(),
                ec.nameof(in.getGroup())
              });
    }
View Full Code Here


    String gid = createGroup(type, init);
    if (gid != null)
    {
      for (String agent : invitees)
      {
        sim.getPlayer(agent).enqueueInput(new GroupInvite(sim.getTime(), gid));
      }
    }
    return gid;
  }
View Full Code Here

TOP

Related Classes of ise.mace.inputs.GroupInvite

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.