You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Possibility of calling events through the network layer to allow a multi-machine event system.
// Create a serverNetworkEventManagereventManager = NetworkEventManager.setupServer("localhost", 9991);
// Link to another serverNetworkEventManager.linkToServer("localhost", 9992);
NetworkEventManager.linkToServer("8.8.8.8", 9991);
// Call an eventeventManager.callEvent(newTestEvent());
// Event calling alternativeseventManager.callLocalEvent(newTestEvent());
eventManager.callNetworkEvent(newTestEvent());
The text was updated successfully, but these errors were encountered:
Possibility of calling events through the network layer to allow a multi-machine event system.
The text was updated successfully, but these errors were encountered: