├── .gitignore ├── .idea ├── $PRODUCT_WORKSPACE_FILE$ ├── .gitignore ├── artifacts │ └── processing_websockets_jar.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── examples ├── websocketClient │ └── websocketClient.pde └── websocketServer │ └── websocketServer.pde ├── library.properties ├── library ├── javax.servlet-api-3.1.0.jar ├── jetty-client-9.3.6.v20151106.jar ├── jetty-http-9.3.6.v20151106.jar ├── jetty-io-9.3.6.v20151106.jar ├── jetty-security-9.3.6.v20151106.jar ├── jetty-server-9.3.6.v20151106.jar ├── jetty-servlet-9.3.6.v20151106.jar ├── jetty-util-9.3.6.v20151106.jar ├── slf4j-api-1.7.13.jar ├── slf4j-simple-1.7.13.jar ├── webSockets.jar ├── websocket-api-9.3.6.v20151106.jar ├── websocket-client-9.3.6.v20151106.jar ├── websocket-common-9.3.6.v20151106.jar ├── websocket-server-9.3.6.v20151106.jar └── websocket-servlet-9.3.6.v20151106.jar ├── processing_websockets.iml ├── references ├── allclasses-frame.html ├── allclasses-noframe.html ├── constant-values.html ├── deprecated-list.html ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── overview-tree.html ├── package-list ├── script.js ├── stylesheet.css └── websockets │ ├── WebsocketClient.html │ ├── WebsocketClientEvents.html │ ├── WebsocketServer.html │ ├── WebsocketServerController.html │ ├── WebsocketServerCreator.html │ ├── WebsocketServerEvents.html │ ├── class-use │ ├── WebsocketClient.html │ ├── WebsocketClientEvents.html │ ├── WebsocketServer.html │ ├── WebsocketServerController.html │ ├── WebsocketServerCreator.html │ └── WebsocketServerEvents.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── package-use.html ├── src └── websockets │ ├── NoLogging.java │ ├── WebsocketClient.java │ ├── WebsocketClientEvents.java │ ├── WebsocketServer.java │ ├── WebsocketServerController.java │ ├── WebsocketServerCreator.java │ └── WebsocketServerEvents.java └── webSockets.zip /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/$PRODUCT_WORKSPACE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/.idea/$PRODUCT_WORKSPACE_FILE$ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/artifacts/processing_websockets_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/.idea/artifacts/processing_websockets_jar.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/README.md -------------------------------------------------------------------------------- /examples/websocketClient/websocketClient.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/examples/websocketClient/websocketClient.pde -------------------------------------------------------------------------------- /examples/websocketServer/websocketServer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/examples/websocketServer/websocketServer.pde -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library.properties -------------------------------------------------------------------------------- /library/javax.servlet-api-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/javax.servlet-api-3.1.0.jar -------------------------------------------------------------------------------- /library/jetty-client-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/jetty-client-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/jetty-http-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/jetty-http-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/jetty-io-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/jetty-io-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/jetty-security-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/jetty-security-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/jetty-server-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/jetty-server-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/jetty-servlet-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/jetty-servlet-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/jetty-util-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/jetty-util-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/slf4j-api-1.7.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/slf4j-api-1.7.13.jar -------------------------------------------------------------------------------- /library/slf4j-simple-1.7.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/slf4j-simple-1.7.13.jar -------------------------------------------------------------------------------- /library/webSockets.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/webSockets.jar -------------------------------------------------------------------------------- /library/websocket-api-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/websocket-api-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/websocket-client-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/websocket-client-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/websocket-common-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/websocket-common-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/websocket-server-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/websocket-server-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /library/websocket-servlet-9.3.6.v20151106.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/library/websocket-servlet-9.3.6.v20151106.jar -------------------------------------------------------------------------------- /processing_websockets.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/processing_websockets.iml -------------------------------------------------------------------------------- /references/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/allclasses-frame.html -------------------------------------------------------------------------------- /references/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/allclasses-noframe.html -------------------------------------------------------------------------------- /references/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/constant-values.html -------------------------------------------------------------------------------- /references/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/deprecated-list.html -------------------------------------------------------------------------------- /references/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/help-doc.html -------------------------------------------------------------------------------- /references/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-1.html -------------------------------------------------------------------------------- /references/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-10.html -------------------------------------------------------------------------------- /references/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-2.html -------------------------------------------------------------------------------- /references/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-3.html -------------------------------------------------------------------------------- /references/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-4.html -------------------------------------------------------------------------------- /references/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-5.html -------------------------------------------------------------------------------- /references/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-6.html -------------------------------------------------------------------------------- /references/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-7.html -------------------------------------------------------------------------------- /references/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-8.html -------------------------------------------------------------------------------- /references/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index-files/index-9.html -------------------------------------------------------------------------------- /references/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/index.html -------------------------------------------------------------------------------- /references/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/overview-tree.html -------------------------------------------------------------------------------- /references/package-list: -------------------------------------------------------------------------------- 1 | websockets 2 | -------------------------------------------------------------------------------- /references/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/script.js -------------------------------------------------------------------------------- /references/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/stylesheet.css -------------------------------------------------------------------------------- /references/websockets/WebsocketClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/WebsocketClient.html -------------------------------------------------------------------------------- /references/websockets/WebsocketClientEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/WebsocketClientEvents.html -------------------------------------------------------------------------------- /references/websockets/WebsocketServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/WebsocketServer.html -------------------------------------------------------------------------------- /references/websockets/WebsocketServerController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/WebsocketServerController.html -------------------------------------------------------------------------------- /references/websockets/WebsocketServerCreator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/WebsocketServerCreator.html -------------------------------------------------------------------------------- /references/websockets/WebsocketServerEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/WebsocketServerEvents.html -------------------------------------------------------------------------------- /references/websockets/class-use/WebsocketClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/class-use/WebsocketClient.html -------------------------------------------------------------------------------- /references/websockets/class-use/WebsocketClientEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/class-use/WebsocketClientEvents.html -------------------------------------------------------------------------------- /references/websockets/class-use/WebsocketServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/class-use/WebsocketServer.html -------------------------------------------------------------------------------- /references/websockets/class-use/WebsocketServerController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/class-use/WebsocketServerController.html -------------------------------------------------------------------------------- /references/websockets/class-use/WebsocketServerCreator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/class-use/WebsocketServerCreator.html -------------------------------------------------------------------------------- /references/websockets/class-use/WebsocketServerEvents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/class-use/WebsocketServerEvents.html -------------------------------------------------------------------------------- /references/websockets/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/package-frame.html -------------------------------------------------------------------------------- /references/websockets/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/package-summary.html -------------------------------------------------------------------------------- /references/websockets/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/package-tree.html -------------------------------------------------------------------------------- /references/websockets/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/references/websockets/package-use.html -------------------------------------------------------------------------------- /src/websockets/NoLogging.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/src/websockets/NoLogging.java -------------------------------------------------------------------------------- /src/websockets/WebsocketClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/src/websockets/WebsocketClient.java -------------------------------------------------------------------------------- /src/websockets/WebsocketClientEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/src/websockets/WebsocketClientEvents.java -------------------------------------------------------------------------------- /src/websockets/WebsocketServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/src/websockets/WebsocketServer.java -------------------------------------------------------------------------------- /src/websockets/WebsocketServerController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/src/websockets/WebsocketServerController.java -------------------------------------------------------------------------------- /src/websockets/WebsocketServerCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/src/websockets/WebsocketServerCreator.java -------------------------------------------------------------------------------- /src/websockets/WebsocketServerEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/src/websockets/WebsocketServerEvents.java -------------------------------------------------------------------------------- /webSockets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrainst/processing_websockets/HEAD/webSockets.zip --------------------------------------------------------------------------------