Example using nc.call("initSharedObject", new Responder(connectSharedObjectRes), soName);
How can i disconnect user from soName object, but do not purge SO if live connections exists? (client side)
Example using nc.call("initSharedObject", new Responder(connectSharedObjectRes), soName);
How can i disconnect user from soName object, but do not purge SO if live connections exists? (client side)
Client-side, I think the easiest way is to close the NetConnection, or try: so.connect(null), or just: so = null;
To shutdown a client server-side: someMisbehavingClient.setShutdownClient(true);
Richard
Thx, i'll think about this way, but in my case i use one nc, but user is connected to n-quantaty of so. I want disconnect user from one of so.