mirror of
https://github.com/processing/processing4.git
synced 2026-01-27 18:31:07 +01:00
notes and updating to registerMethod()
This commit is contained in:
@@ -81,7 +81,7 @@ public class Client implements Runnable {
|
||||
thread = new Thread(this);
|
||||
thread.start();
|
||||
|
||||
parent.registerDispose(this);
|
||||
parent.registerMethod("dispose", this);
|
||||
|
||||
// reflection to check whether host applet has a call for
|
||||
// public void clientEvent(processing.net.Client)
|
||||
|
||||
@@ -76,7 +76,7 @@ public class Server implements Runnable {
|
||||
thread = new Thread(this);
|
||||
thread.start();
|
||||
|
||||
parent.registerDispose(this);
|
||||
parent.registerMethod("dispose", this);
|
||||
|
||||
// reflection to check whether host applet has a call for
|
||||
// public void serverEvent(Server s, Client c);
|
||||
|
||||
Reference in New Issue
Block a user