Client output property
in
Programming Questions
•
3 months ago
I've inherited some code:
Client socket;
...
socket = new Client(papplet, host, port);
...
if (socket.output != null)
...
I can't find anything about .output in the documentation, and it's not clear to me in the code what aspect of the socket is being checked.
Can anyone explain, please?
Client socket;
...
socket = new Client(papplet, host, port);
...
if (socket.output != null)
...
I can't find anything about .output in the documentation, and it's not clear to me in the code what aspect of the socket is being checked.
Can anyone explain, please?
1