Class AcquireActionCreator


  • public class AcquireActionCreator
    extends GeneralAction
    This class constructs an AcquireAction. It is used to create the 'AcquireAction' object step-by-step, i.e. 'AcquireActionCreator' objects are of intermediate state.
    See Also:
    AcquireAction
    • Constructor Detail

      • AcquireActionCreator

        protected AcquireActionCreator​(SeffCreator seff)
    • Method Detail

      • withName

        public AcquireActionCreator withName​(String name)
        Description copied from class: Entity
        Defines the unique name of this current entity. Once created entities are referenced by this name. Only entities with a unique name can be fetched from the model.
        Overrides:
        withName in class Entity
        Returns:
        this current entity in the making
      • withPassiveResource

        public AcquireActionCreator withPassiveResource​(org.palladiosimulator.pcm.repository.PassiveResource passiveResource)
        Specifies the passive resource of this acquire action.

        An existing passiveResource can be fetched from the repository using the factory, i.e. create.fetchOfPassiveResource(name).

        Parameters:
        passiveResource -
        Returns:
        this acquire action in the making
        See Also:
        factory.FluentRepositoryFactory#fetchOfPassiveResource(String)
      • withTimeoutValue

        public AcquireActionCreator withTimeoutValue​(double timeoutValue)
        Specifies the timeout value of this acquire action.
        Parameters:
        timeoutValue -
        Returns:
        this acquire action in the making
      • isTimeout

        public AcquireActionCreator isTimeout​(Boolean isTimeout)
        Specifies if this acquire action is timeout.
        Parameters:
        isTimeout -
        Returns:
        this acquire action in the making
      • withResourceDemand

        public AcquireActionCreator withResourceDemand​(String specificationStochasticExpression,
                                                       ProcessingResource processingResource)
        Description copied from class: GeneralAction
        Adds a ParametricResourceDemand to this action.

        Parametric Resource Demand specifies the amount of processing requested from a certain type of resource in a parameterized way. It assigns the demand specified as a Random-Variable (specification_stochasticExpression) to an abstract ProcessingResourceType processingResource(e.g., CPU, hard disk) instead of a concrete ProcessingResourceSpecification (e.g., 5 GHz CPU, 20 MByte/s hard disk).

        Overrides:
        withResourceDemand in class GeneralAction
        Returns:
        this action in the making
      • withInfrastructureCall

        public AcquireActionCreator withInfrastructureCall​(String numberOfCallsStochasticExpression,
                                                           org.palladiosimulator.pcm.repository.InfrastructureSignature signature,
                                                           org.palladiosimulator.pcm.repository.InfrastructureRequiredRole requiredRole,
                                                           VariableUsageCreator... variableUsages)
        Description copied from class: GeneralAction
        Adds an InfrastructureCall to this action.
        Overrides:
        withInfrastructureCall in class GeneralAction
        Returns:
        this action in the making
      • build

        protected org.palladiosimulator.pcm.seff.AcquireAction build()
        Description copied from class: Entity
        Turns the entity in the making into the finished entity.
        Specified by:
        build in class SeffAction
        Returns:
        the finished entity