Called when a new member joins the space

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

Syntax

C#
void onJoin(
	string spaceName,
	Member member,
	DistributionRole role
)
Visual Basic
Sub onJoin ( 
	spaceName As String,
	member As Member,
	role As DistributionRole
)
Visual C++
void onJoin(
	String^ spaceName, 
	Member^ member, 
	DistributionRole role
)
F#
abstract onJoin : 
        spaceName : string * 
        member : Member * 
        role : DistributionRole -> unit 

Parameters

spaceName
Type: System..::..String
Name of the space.
member
Type: Com.Tibco.As.Space..::..Member
The member.
role
Type: Com.Tibco.As.Space..::..DistributionRole
The role.

See Also