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


Processing Client.stop()用法及代碼示例


Processing, 類Client中的stop()用法介紹。

用法

  • client.stop()

參數

  • client (Client) 客戶端類型的任何變量

返回

  • void

說明

與服務器斷開連接。使用完客戶端後用於關閉連接。

例子

import processing.net.*; 

Client myClient;
int dataIn; 

void setup() {
  size(200, 200);
  // Connect to the local machine at port 5204.
  // This example will not run if you haven't
  // previously started a server on this port.
  myClient = new Client(this, "127.0.0.1", 5204);
  println(myClient.ip());
}

void draw() {
  if (myClient.available() > 0) {
    dataIn = myClient.read();
  }
  background(dataIn);
}

void mousePressed() {
  myClient.stop();
}

相關用法


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