FAQ
 
 
Cover  \ Exhibition  \ Learning  \ Reference  \ Download  \ Discourse   
      Language \ Environment \ Libraries \ Comparison
 
   
   
Back  
   
  Reference for Processing (BETA) version 91+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.  
Class   Server
   
Name  

disconnect()

   
Examples  
// Example by Tom Igoe 
 
import processing.net.*; 
 
int port = 10002; 
Server myServer; 
 
void setup() 
{ 
  size(400, 400); 
  background(0); 
  myServer = new Server(this, port); 
} 
 
void draw() 
{ 
  // Get the next available client 
  Client thisClient = myServer.available(); 
  // If the client is not null, and says something, display what it said: 
  if (thisClient !=null) { 
    String whatClientSaid = thisClient.readString(); 
    // If the client says "exit", disconnect it 
    if (whatClientSaid.equals("exit\r\n")) { 
      thisClient.write("You will be disconnected now.\r\n"); 
      println(thisClient.ip() + "\t has been disconnected"); 
      myServer.disconnect(thisClient); 
    } 
  } 
} 
 

Description   Disconnect a particular client.
   
Syntax  
server.disconnect(client)
   
Parameters  
server   any variable of type Server

client   Client: the client to disconnect

   
Returns   None
   
Usage   Web & Application
   
 
 






   
 
Updated: Fri Jul 15 16:41:10 PDT 2005
 
 








Creative Commons License
 
  Processing is an open project initiated by Ben Fry and Casey Reas  
  © Info  
ated by Ben Fry and Casey Reas     © Info   nt> and Casey Reas     © Info   ource.org/cc/Notice" /> -->     Processing is an open project initiated by Ben Fry and Casey Reas     © Info   native file format.