Ejemplo n.º 1
0
 public void updateSelf(ActorReference actorReference) {
   ((JoinDirector) actorReference).setUAL(getUAL());
   ((JoinDirector) actorReference).setUAN(getUAN());
   self = new JoinDirector(false, getUAL());
   self.setUAN(getUAN());
   self.setUAL(getUAL());
   self.muteGC();
 }
Ejemplo n.º 2
0
  public static void main(String args[]) {
    UAN uan = null;
    UAL ual = null;
    if (System.getProperty("uan") != null) {
      uan = new UAN(System.getProperty("uan"));
      ServiceFactory.getTheater();
      RunTime.receivedUniversalActor();
    }
    if (System.getProperty("ual") != null) {
      ual = new UAL(System.getProperty("ual"));

      if (uan == null) {
        System.err.println("Actor Creation Error:");
        System.err.println("	uan: " + uan);
        System.err.println("	ual: " + ual);
        System.err.println("	Identifier: " + System.getProperty("identifier"));
        System.err.println("	Cannot specify an actor to have a ual at runtime without a uan.");
        System.err.println(
            "	To give an actor a specific ual at runtime, use the identifier system property.");
        System.exit(0);
      }
      RunTime.receivedUniversalActor();
    }
    if (System.getProperty("identifier") != null) {
      if (ual != null) {
        System.err.println("Actor Creation Error:");
        System.err.println("	uan: " + uan);
        System.err.println("	ual: " + ual);
        System.err.println("	Identifier: " + System.getProperty("identifier"));
        System.err.println(
            "	Cannot specify an identifier and a ual with system properties when creating an actor.");
        System.exit(0);
      }
      ual = new UAL(ServiceFactory.getTheater().getLocation() + System.getProperty("identifier"));
    }
    JoinDirector instance = (JoinDirector) new JoinDirector(uan, ual).construct();
    {
      Object[] _arguments = {args};
      instance.send(new Message(instance, instance, "act", _arguments, null, null));
    }
  }
Ejemplo n.º 3
0
 public static ActorReference getReferenceByLocation(String ual) {
   return JoinDirector.getReferenceByLocation(new UAL(ual));
 }
Ejemplo n.º 4
0
 public static ActorReference getReferenceByName(String uan) {
   return JoinDirector.getReferenceByName(new UAN(uan));
 }