API Guides > ConceptRT 3.x
BaseInvocableArrayDynamicFixed< ElementType, itemInvocable > Class Template Reference

Base Invocable array whose size is fixed at the construction time. More...

Detailed Description

template<class ElementType, bool itemInvocable>
class ConceptRT::BaseInvocableArrayDynamicFixed< ElementType, itemInvocable >

Base Invocable array whose size is fixed at the construction time.

Template Parameters
ElementTypeArray items type.
itemInvocableSpecify if the items are invocable or not.
Warning
Non-Deterministic: Creation is non-deterministic. Browsing the array is deterministic. Determinism when using ConceptRT library can be ensure by using Context Time Critical mechanisms.
+ Inheritance diagram for BaseInvocableArrayDynamicFixed< ElementType, itemInvocable >:

Public Member Methods

void Invoke (const DynamicInvocationRequest &request, DynamicInvocationResult &result)
 Invokes the object fields and methods. More...
 
- Public Member Methods inherited from SafeArrayDynamicFixed< ElementType >
 SafeArrayDynamicFixed (Int32 size)
 Constructor. More...
 
 SafeArrayDynamicFixed (const SafeArrayDynamicFixed< ElementType > &right)
 Constructor copy More...
 
ElementType & operator[] (Int32 index)
 Array indexer operator. More...
 
const ElementType & operator[] (Int32 index) const
 Array indexer operator. More...
 
Int32 GetSize () const
 Gets the array actual size. More...
 
- Public Member Methods inherited from BaseSafeArray< ElementType >
bool IndexValid (Int32 index) const
 Query if index is valid. More...
 
void Exchange (Int32 index1, Int32 index2)
 Exchanges two items More...
 

Methods Documentation

void Invoke ( const DynamicInvocationRequest request,
DynamicInvocationResult result 
)
virtual

Invokes the object fields and methods.

Parameters
requestThe request.
result[in,out] The result.

Dynamic Invocation on IInvocable objects enables us to have remote access on published fields and methods.

Implements IInvocable.