This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.

Name

clientEvent()

Examples
import processing.net.*;

Client myClient;
int dataIn;

void setup() {
  size(200, 200);
  myClient = new Client(this, "127.0.0.1", 5204);
  noLoop();
}

void draw() { 
  background(dataIn);
}

// ClientEvent message is generated when the 
// server sends data to an existing client.
void clientEvent(Client someClient) {
  print("Server Says:  ");
  dataIn = someClient.read();
  println(dataIn);
  redraw();
}

Description This function is called when a server sends a value to an existing Client object.
Syntax
void clientEvent(client) {
  statements
}
Parameters
statements any valid statements
client the client with new data
RelatedServer
Updated on January 1, 2021 03:38:10am EST