Group :: OnMemberPresent

01 This function will be called as callback when another member is joining the group.
02

[C++] virtual void OnMemberPresent(uint64 memberIndex, uint64 requestKey, SemysTimeTick tick);
[C#] virtual void OnMemberPresent(IntPtr listener, IntPtr group, ulong memberIndex, ulong requestKey, ulong tick);

03 Parameters:
  • listener: Always IntPtr.Zero
  • group: Group handle
  • memberIndex: The index of the member that is joining.
  • requestKey: Request key for the join.
  • tick: Timestamp when this event happened.
04 This callback is on behalf of the SemysGroupMemberPresentProt() callback.
05 Global Lock: Required
Reference: net::semys
Implementation: Semys Architecture
See Also: Arch Group Sub-System, Group, SemysGroupMemberPresentProt()

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.