當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing clientEvent()用法及代碼示例


Processing, clientEvent()用法介紹。

用法

  • void clientEvent(client) {
  • statements
  • }

參數

  • statements 任何有效的陳述
  • client 有新數據的客戶

說明

當服務器向現有 Client 對象發送值時調用此函數。

例子

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();
}

有關的

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 clientEvent()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。