Results 1 to 3 of 3

Thread: TextChat: disconnect from shared object

  1. #1
    Join Date
    Nov 2010
    Posts
    5

    Default TextChat: disconnect from shared object

    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)

  2. #2
    Join Date
    Dec 2007
    Posts
    25,641

    Default

    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

  3. #3
    Join Date
    Nov 2010
    Posts
    5

    Default

    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.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •