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


Processing disconnectEvent()用法及代碼示例


Processing, disconnectEvent()用法介紹。

用法

  • void disconnectEvent(client) {
  • statements
  • }

參數

  • statements 任何有效的陳述
  • client 已斷開連接的客戶端

說明

當客戶端斷開連接時調用此函數。

例子

import processing.net.*;

Client myClient;
int dataIn;

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

void draw() { }  // Empty draw keeps the program running

// ClientEvent message is generated when a client disconnects.
void disconnectEvent(Client someClient) {
  print("Server Says:  ");
  dataIn = myClient.read();
  println(dataIn);
  background(dataIn);

}

有關的

相關用法


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