API Guides > ConceptRT 3.x
BaseInvocableArray< ElementType, Size, true > Class Template Reference

Base Invocable array. (For invocable items type) More...

Detailed Description

template<class ElementType, Int32 Size>
class ConceptRT::BaseInvocableArray< ElementType, Size, true >

Base Invocable array. (For invocable items type)

Template Parameters
ElementTypeArray items type.
SizeArray size.
+ Inheritance diagram for BaseInvocableArray< ElementType, Size, true >:

Public Member Methods

void Invoke (const DynamicInvocationRequest &request, DynamicInvocationResult &result)
 Invokes the object fields and methods. More...
 
- Public Member Methods inherited from SafeArray< ElementType, Size >
ElementType & operator[] (Int32 index)
 Array indexer operator. More...
 
const ElementType & operator[] (Int32 index) const
 Array indexer operator. More...
 
Int32 GetSize () const
 Gets the array 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.