Group :: OnLocalPresent

01 This function will be called as callback when the local member has successfully joined the group.
02

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

03 Parameters:
  • listener: Always IntPtr.Zero
  • group: Group handle
  • pGroup / group: The group calling this function.
  • memberIndex: Local member index.
  • memberMask: Mask of currently alive members.
  • tick: Timestamp when this event happened.
04 This callback is on behalf of the SemysGroupLocalPresentProt() callback.
05 Global Lock: Required
Reference: net::semys
Implementation: Semys Architecture
See Also: Arch Group Sub-System, Group, SemysGroupLocalPresentProt()

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