Invokes in parallel the appropriate invoke method of the specified class on all of the space's members. Note that this member MUST have the invoked class present in it's CLASSPATH for the invocation to succeed!

Namespace: Com.Tibco.As.Space
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.2.0.015)

Syntax

C#
[ObsoleteAttribute("Use Space.Invoke(...) with InvokeOptions")]
void InvokeMembers<T>(
	ICollection<Member> members,
	Tuple contextTuple,
	InvokeResultListHandler handler
)
where T : MemberInvocable
Visual Basic
<ObsoleteAttribute("Use Space.Invoke(...) with InvokeOptions")> 
Sub InvokeMembers(Of T As MemberInvocable) ( 
	members As ICollection(Of Member),
	contextTuple As Tuple,
	handler As InvokeResultListHandler
)
Visual C++
[ObsoleteAttribute(L"Use Space.Invoke(...) with InvokeOptions")]
generic<typename T>
where T : MemberInvocable
void InvokeMembers(
	ICollection<Member^>^ members, 
	Tuple^ contextTuple, 
	InvokeResultListHandler^ handler
)
F#
[<ObsoleteAttribute("Use Space.Invoke(...) with InvokeOptions")>]
abstract InvokeMembers : 
        members : ICollection<Member> * 
        contextTuple : Tuple * 
        handler : InvokeResultListHandler -> unit  when 'T : MemberInvocable

Parameters

members
Type: System.Collections.Generic..::..ICollection<(Of <(<'Member>)>)>
The members to invoke on
contextTuple
Type: Com.Tibco.As.Space..::..Tuple
Context tuple for extra arguments
handler
Type: Com.Tibco.As.Space.Remote..::..InvokeResultListHandler
The async handler

Type Parameters

T
Type that implements InvocableMember

See Also