Lacewing::EventPump pump;
Lacewing::Client* client = new Lacewing::Client(pump);
client->Tag = this;
client->onReceive(onReceiveEx);
client->onConnect(onConnectEx);
Lacewing::Address adb("127.0.0.1",12581,Lacewing::Address.HINT_IPv4);
client->Connect(adb);
pump.StartEventLoop();
this My code, the client Connect to the server sucessfully and the onConnectEx called as expected , but the onReceiveEx didn't called!!! client doesn't Receive anything, why?