IGathererListener :: OnGathReceive

01 This function will be called as callback from the gatherer when it has received some data.
02

[C++] virtual void OnGathReceive(Gatherer *pGath, void const *pData, uint32 dataSize, uint32 hash) = 0;
[C#] void OnGathReceive(Gatherer gath, byte[] data, uint hash);

03 Parameters:
  • pGath / gath: The gatherer calling this function.
  • pData / data: The data received.
  • dataSize: Amount of bytes received.
  • hash: Hash value of the data packet.
04 This callback is on behalf of the SemysGathReceiveProt() callback.
05 [C++] The pData pointer is a temporary one that may not be kept beyond the scope of the callback. The received data has to be copied if it needs to be preserved.
06 Global Lock: Required
Reference: net::semys
Implementation: Semys Architecture
See Also: Arch Transporter Sub-System, IGathererListener, SemysGathReceiveProt()

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