ADTF  3.18.2
runnable< TYPE_OF_ACTIVATION, AntInterface, Interface >
Inheritance diagram for runnable< TYPE_OF_ACTIVATION, AntInterface, Interface >:
[legend]

Public Member Functions

 runnable ()=default
 CTOR.
 
 runnable (adtf::base::flash::IRunnable::tRunFunction fcRunOnceFunc)
 Main CTOR with callable function. More...
 
 runnable (ant::IRunnable::tRunFunction fcRunOnceFunc)
 Compatibility CTOR with callable function. More...
 
 ~runnable () override=default
 DTOR.
 
tResult Run (tTimeStamp tmTimeofActivation, ant::IRunnable::tActivationType ui32ActivationType, const void *pvUserData, size_t nUserDataSize) override
 
tResult Run (tNanoSeconds tmTimeofActivation, ant::IRunnable::tActivationType ui32ActivationType, const void *, size_t) override
 IRunnable::Run implementation which will call m_fcRunOnceFunc if ui32ActivationType is TYPE_OF_ACTIVATION. More...
 
ant::IRunnable::tActivationType GetActivationType () const override
 Returns the type of activation implemented. More...
 
- Public Member Functions inherited from object< ant::IRunnable, ant::IRunnable, IRunnable, IRunnable >
tResult GetInterface (const char *i_strIID, void *&o_pInterface) override
 Query interfaces on an object. More...
 
tResult GetInterface (const char *i_strIID, const void *&o_pInterface) const override
 Provides const correct interface querying. More...
 
void Destroy () const override
 Destruct and deallocate instantiations of type IObject. More...
 
- Public Member Functions inherited from IObject
 ADTF_IID (IObject, "object.ant.ucom.adtf.iid")
 Marks the IObject to be castable with the ucom_cast() More...
 

Protected Attributes

adtf::base::flash::IRunnable::tRunFunction m_fcRunOnceFunc = nullptr
 given function to call on Run
 

Additional Inherited Members

- Protected Member Functions inherited from IObject
 ~IObject ()=default
 Protected destructor --> Use implemented Destroy() instead of delete!
 

Detailed Description

template<ant::IRunnable::tActivationType TYPE_OF_ACTIVATION = ant::IRunnable::RUN_UNSPECIFIED, typename AntInterface = ant::IRunnable, typename Interface = IRunnable>
class adtf::base::flash::runnable< TYPE_OF_ACTIVATION, AntInterface, Interface >

Definition at line 115 of file runnable.h.

Constructor & Destructor Documentation

◆ runnable() [1/2]

Main CTOR with callable function.

Parameters
fcRunOnceFuncrun function

Definition at line 126 of file runnable.h.

References runnable< TYPE_OF_ACTIVATION, AntInterface, Interface >::m_fcRunOnceFunc.

◆ runnable() [2/2]

runnable ( ant::IRunnable::tRunFunction  fcRunOnceFunc)
inline

Compatibility CTOR with callable function.

Parameters
fcRunOnceFuncrun function

Definition at line 133 of file runnable.h.

References runnable< TYPE_OF_ACTIVATION, AntInterface, Interface >::m_fcRunOnceFunc.

Member Function Documentation

◆ GetActivationType()

ant::IRunnable::tActivationType GetActivationType ( ) const
inlineoverride

Returns the type of activation implemented.

Returns
the activation type given by TYPE_OF_ACTIVATION

Definition at line 183 of file runnable.h.

◆ Run()

tResult Run ( tNanoSeconds  tmTimeofActivation,
ant::IRunnable::tActivationType  ui32ActivationType,
const void *  ,
size_t   
)
inlineoverride

IRunnable::Run implementation which will call m_fcRunOnceFunc if ui32ActivationType is TYPE_OF_ACTIVATION.

Return values
ERR_NOT_INITIALIZEDm_fcRunOnceFunc is not set

The Run method to set the component in running state. This method will be called to activate the component by a given activation type.

Parameters
[in]tmTimeofActivationTime of activation. Usually this is the StreamTime.
[in]ui32ActivationTypeThe activation type for running.
[in]pvUserDatapointer to a activation structure depending on the activation type.
[in]nUserDataSizeSize of the activation structure. (in byte)
Returns
Standard result code.
Return values
ERR_CANCELEDDepending on the caller (timer, cyclic thread) it will break cyclic running.

Definition at line 162 of file runnable.h.

References runnable< TYPE_OF_ACTIVATION, AntInterface, Interface >::m_fcRunOnceFunc, RETURN_ERROR, and IRunnable::RUN_UNSPECIFIED.