Class DistributedTypedCompositeActor

    • Constructor Detail

      • DistributedTypedCompositeActor

        public DistributedTypedCompositeActor()
        Construct a Distributed TypedCompositeActor in the default workspace with no container and an empty string as its name. Add the actor to the workspace directory. You should set the local director or executive director before attempting to send data to the actor or to execute it. Increment the version number of the workspace.
      • DistributedTypedCompositeActor

        public DistributedTypedCompositeActor​(Workspace workspace)
        Construct a DistributedTypedCompositeActor in the specified workspace with no container and an empty string as a name. You can then change the name with setName(). If the workspace argument is null, then use the default workspace. You should set the local director or executive director before attempting to send data to the actor or to execute it. Add the actor to the workspace directory. Increment the version number of the workspace.
        Parameters:
        workspace - The workspace that will list the actor.
      • DistributedTypedCompositeActor

        public DistributedTypedCompositeActor​(CompositeEntity container,
                                              java.lang.String name)
                                       throws IllegalActionException,
                                              NameDuplicationException
        Construct a DistributedTypedCompositeActor with a name and a container. The container argument must not be null, or a NullPointerException will be thrown. This actor will use the workspace of the container for synchronization and version counts. If the name argument is null, then the name is set to the empty string. Increment the version of the workspace. This actor will have no local director initially, and its executive director will be simply the director of the container.
        Parameters:
        container - The container.
        name - The name of this actor.
        Throws:
        IllegalActionException - If the container is incompatible with this actor.
        NameDuplicationException - If the name coincides with an actor already in the container.
    • Method Detail

      • newRelation

        public ComponentRelation newRelation​(java.lang.String name)
                                      throws NameDuplicationException
        Create a new DistributedTypedIORelation with the specified name, add it to the relation list, and return it. Derived classes can override this to create domain-specific subclasses of TypedIORelation. This method is write-synchronized on the workspace.
        Overrides:
        newRelation in class TypedCompositeActor
        Parameters:
        name - The name for the new TypedIORelation.
        Returns:
        A new TypedIORelation.
        Throws:
        NameDuplicationException - If name collides with a name already on the container's contents list.