Class Wait

  • All Implemented Interfaces:
    Command, SequenceCommand, java.io.Serializable, scala.Equals, scala.Product

    public class Wait
    extends ParameterSetType<Wait>
    implements SequenceCommand, scala.Product, java.io.Serializable
    A parameter set for setting telescope and instrument parameters. Constructor is private to ensure RunId is created internally to guarantee unique value.
    See Also:
    Serialized Form
    • Constructor Detail

      • Wait

        public Wait​(Prefix source,
                    CommandName commandName,
                    java.util.Optional<ObsId> maybeObsId)
        A java helper to construct Wait command
        Parameters:
        source - (undocumented)
        commandName - (undocumented)
        maybeObsId - (undocumented)
    • Method Detail

      • apply

        public static Wait apply​(Prefix source,
                                 CommandName commandName,
                                 scala.Option<ObsId> maybeObsId)
        The apply method is used to create Wait command by end-user. runId is not accepted and will be created internally to guarantee unique value.

        Parameters:
        source - prefix representing source of the command
        commandName - the name of the command
        maybeObsId - an optional obsId for command
        Returns:
        a new instance of Wait with auto-generated runId and empty paramSet
      • apply

        public static Wait apply​(Prefix source,
                                 CommandName commandName,
                                 scala.Option<ObsId> maybeObsId,
                                 scala.collection.immutable.Set<Parameter<?>> paramSet)
        The apply method is used to create Wait command by end-user. runId is not accepted and will be created internally to guarantee unique value.

        Parameters:
        source - prefix representing source of the command
        commandName - the name of the command
        maybeObsId - an optional obsId for command
        paramSet - an initial set of parameters (keys with values)
        Returns:
        a new instance of Wait with auto-generated runId
      • runId

        public Id runId()
        Description copied from interface: Command
        unique Id for command parameter set
        Specified by:
        runId in interface Command
        Returns:
        (undocumented)
      • source

        public Prefix source()
        Description copied from interface: Command
        Prefix representing source of the command
        Specified by:
        source in interface Command
        Returns:
        (undocumented)
      • commandName

        public CommandName commandName()
        Description copied from interface: Command
        The name of command
        Specified by:
        commandName in interface Command
        Returns:
        (undocumented)
      • maybeObsId

        public scala.Option<ObsId> maybeObsId()
        Description copied from interface: Command
        An optional obsId for command
        Specified by:
        maybeObsId in interface Command
        Returns:
        (undocumented)
      • create

        protected Wait create​(scala.collection.immutable.Set<Parameter<?>> data)
        Create a new Wait instance when a parameter is added or removed

        Specified by:
        create in class ParameterSetType<Wait>
        Parameters:
        data - set of parameters
        Returns:
        a new instance of Wait with new runId and provided data
      • cloneCommand

        public Wait cloneCommand()
        Create a new Wait instance from an existing instance

        Returns:
        a new instance of Wait with new runId and copied data