Main Content

testEntry

Class: matlab.DiscreteEventSystem
Namespace: matlab

Event action to accept or refuse entity

Syntax

accept = testEntry(obj,storage,entity,source,in1,...)

Description

accept = testEntry(obj,storage,entity,source,in1,...) specifies if the storage can accept entity.

Input Arguments

expand all

Discrete-event System object.

Index of the storage element.

Entity entering storage component. Entity has these fields:

  • sys (MATLAB structure) — It has these fields:

    • id (double) — Entity ID

    • priority (double) — Entity priority

  • data — Entity data

Source location of entity, such as an input port or a storage element. It has these fields:

  • type (character vector) — Specify input or storage

  • index (double) — Input or storage index

Any data inputs of the object. These input arguments exist only when the object has data inputs.

Output Arguments

expand all

Storage accepts entity if true. Otherwise, if false, it does not accept the entity.

Examples

expand all

Accept or refuse an entity entering the storage.

function bool = testEntry(obj,storage,entity,src)
    % Test if entity is accepted
    bool = obj.isEntityAcceptable(obj, entity);
    end
    

Version History

Introduced in R2018a