├── .github ├── FUNDING.yml └── workflows │ ├── maven-11.yml │ ├── maven-13.yml │ └── maven.yml ├── .gitignore ├── LICENSE-2.0.txt ├── README.md ├── pom.xml ├── samples ├── chat │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── atmosphere │ │ │ └── samples │ │ │ └── chat │ │ │ ├── Chat.java │ │ │ ├── JacksonDecoder.java │ │ │ ├── JacksonEncoder.java │ │ │ ├── Message.java │ │ │ ├── ObjectMapperInjectable.java │ │ │ └── custom │ │ │ ├── Config.java │ │ │ └── SampleConfig.java │ │ ├── resources │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.atmosphere.inject.Injectable │ │ └── logback.xml │ │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── index.html │ │ └── javascript │ │ ├── application.js │ │ └── jquery-2.0.3.js └── embedded-jetty-websocket-chat │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── org │ │ └── atmosphere │ │ └── samples │ │ └── chat │ │ ├── EmbeddedJettyWebSocketChat.java │ │ └── WebSocketChat.java │ ├── resources │ ├── META-INF │ │ └── services │ │ │ └── org.atmosphere.inject.Injectable │ └── logback.xml │ └── webapp │ ├── index.html │ └── javascript │ ├── application.js │ └── jquery-2.0.3.js └── wasync-samples ├── android-chat ├── AndroidManifest.xml ├── pom.xml ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── main │ └── java │ └── org │ └── atmosphere │ └── wasync │ └── andoid │ ├── Message.java │ └── wAsyncChat.java ├── chat ├── README.md ├── pom.xml └── src │ └── main │ ├── assembly │ └── distribution.xml │ ├── conf │ └── logback.xml │ ├── java │ └── org │ │ └── atmosphere │ │ └── wasync │ │ └── samples │ │ ├── Chat.java │ │ ├── JacksonDecoder.java │ │ ├── JacksonEncoder.java │ │ ├── Message.java │ │ ├── NettosphereChat.java │ │ └── wAsyncChat.java │ ├── resources │ ├── index.html │ └── jquery │ │ ├── application.js │ │ ├── jquery-2.0.3.js │ │ └── jquery.atmosphere.js │ └── scripts │ └── nettosphere.sh ├── node.js ├── README.md ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── atmosphere │ │ └── wasync │ │ └── samples │ │ └── node │ │ ├── Message.java │ │ └── wAsyncNodeChat.java │ └── resources │ ├── chat-server.js │ ├── index.html │ └── jquery │ ├── application.js │ ├── jquery-2.0.3.js │ └── jquery.atmosphere.js └── pom.xml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/maven-11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/.github/workflows/maven-11.yml -------------------------------------------------------------------------------- /.github/workflows/maven-13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/.github/workflows/maven-13.yml -------------------------------------------------------------------------------- /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/LICENSE-2.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/pom.xml -------------------------------------------------------------------------------- /samples/chat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/pom.xml -------------------------------------------------------------------------------- /samples/chat/src/main/java/org/atmosphere/samples/chat/Chat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/java/org/atmosphere/samples/chat/Chat.java -------------------------------------------------------------------------------- /samples/chat/src/main/java/org/atmosphere/samples/chat/JacksonDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/java/org/atmosphere/samples/chat/JacksonDecoder.java -------------------------------------------------------------------------------- /samples/chat/src/main/java/org/atmosphere/samples/chat/JacksonEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/java/org/atmosphere/samples/chat/JacksonEncoder.java -------------------------------------------------------------------------------- /samples/chat/src/main/java/org/atmosphere/samples/chat/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/java/org/atmosphere/samples/chat/Message.java -------------------------------------------------------------------------------- /samples/chat/src/main/java/org/atmosphere/samples/chat/ObjectMapperInjectable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/java/org/atmosphere/samples/chat/ObjectMapperInjectable.java -------------------------------------------------------------------------------- /samples/chat/src/main/java/org/atmosphere/samples/chat/custom/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/java/org/atmosphere/samples/chat/custom/Config.java -------------------------------------------------------------------------------- /samples/chat/src/main/java/org/atmosphere/samples/chat/custom/SampleConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/java/org/atmosphere/samples/chat/custom/SampleConfig.java -------------------------------------------------------------------------------- /samples/chat/src/main/resources/META-INF/services/org.atmosphere.inject.Injectable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/resources/META-INF/services/org.atmosphere.inject.Injectable -------------------------------------------------------------------------------- /samples/chat/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/resources/logback.xml -------------------------------------------------------------------------------- /samples/chat/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /samples/chat/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/webapp/index.html -------------------------------------------------------------------------------- /samples/chat/src/main/webapp/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/webapp/javascript/application.js -------------------------------------------------------------------------------- /samples/chat/src/main/webapp/javascript/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/chat/src/main/webapp/javascript/jquery-2.0.3.js -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/embedded-jetty-websocket-chat/README.md -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/embedded-jetty-websocket-chat/pom.xml -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/src/main/java/org/atmosphere/samples/chat/EmbeddedJettyWebSocketChat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/embedded-jetty-websocket-chat/src/main/java/org/atmosphere/samples/chat/EmbeddedJettyWebSocketChat.java -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/src/main/java/org/atmosphere/samples/chat/WebSocketChat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/embedded-jetty-websocket-chat/src/main/java/org/atmosphere/samples/chat/WebSocketChat.java -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/src/main/resources/META-INF/services/org.atmosphere.inject.Injectable: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/embedded-jetty-websocket-chat/src/main/resources/logback.xml -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/embedded-jetty-websocket-chat/src/main/webapp/index.html -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/src/main/webapp/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/embedded-jetty-websocket-chat/src/main/webapp/javascript/application.js -------------------------------------------------------------------------------- /samples/embedded-jetty-websocket-chat/src/main/webapp/javascript/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/samples/embedded-jetty-websocket-chat/src/main/webapp/javascript/jquery-2.0.3.js -------------------------------------------------------------------------------- /wasync-samples/android-chat/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/AndroidManifest.xml -------------------------------------------------------------------------------- /wasync-samples/android-chat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/pom.xml -------------------------------------------------------------------------------- /wasync-samples/android-chat/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wasync-samples/android-chat/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /wasync-samples/android-chat/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wasync-samples/android-chat/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wasync-samples/android-chat/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/res/layout/main.xml -------------------------------------------------------------------------------- /wasync-samples/android-chat/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/res/values/strings.xml -------------------------------------------------------------------------------- /wasync-samples/android-chat/src/main/java/org/atmosphere/wasync/andoid/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/src/main/java/org/atmosphere/wasync/andoid/Message.java -------------------------------------------------------------------------------- /wasync-samples/android-chat/src/main/java/org/atmosphere/wasync/andoid/wAsyncChat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/android-chat/src/main/java/org/atmosphere/wasync/andoid/wAsyncChat.java -------------------------------------------------------------------------------- /wasync-samples/chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/README.md -------------------------------------------------------------------------------- /wasync-samples/chat/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/pom.xml -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/assembly/distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/assembly/distribution.xml -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/conf/logback.xml -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/Chat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/Chat.java -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/JacksonDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/JacksonDecoder.java -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/JacksonEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/JacksonEncoder.java -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/Message.java -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/NettosphereChat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/NettosphereChat.java -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/wAsyncChat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/java/org/atmosphere/wasync/samples/wAsyncChat.java -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/resources/index.html -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/resources/jquery/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/resources/jquery/application.js -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/resources/jquery/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/resources/jquery/jquery-2.0.3.js -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/resources/jquery/jquery.atmosphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/resources/jquery/jquery.atmosphere.js -------------------------------------------------------------------------------- /wasync-samples/chat/src/main/scripts/nettosphere.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/chat/src/main/scripts/nettosphere.sh -------------------------------------------------------------------------------- /wasync-samples/node.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/node.js/README.md -------------------------------------------------------------------------------- /wasync-samples/node.js/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/node.js/pom.xml -------------------------------------------------------------------------------- /wasync-samples/node.js/src/main/java/org/atmosphere/wasync/samples/node/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/node.js/src/main/java/org/atmosphere/wasync/samples/node/Message.java -------------------------------------------------------------------------------- /wasync-samples/node.js/src/main/java/org/atmosphere/wasync/samples/node/wAsyncNodeChat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/node.js/src/main/java/org/atmosphere/wasync/samples/node/wAsyncNodeChat.java -------------------------------------------------------------------------------- /wasync-samples/node.js/src/main/resources/chat-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/node.js/src/main/resources/chat-server.js -------------------------------------------------------------------------------- /wasync-samples/node.js/src/main/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/node.js/src/main/resources/index.html -------------------------------------------------------------------------------- /wasync-samples/node.js/src/main/resources/jquery/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/node.js/src/main/resources/jquery/application.js -------------------------------------------------------------------------------- /wasync-samples/node.js/src/main/resources/jquery/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/node.js/src/main/resources/jquery/jquery-2.0.3.js -------------------------------------------------------------------------------- /wasync-samples/node.js/src/main/resources/jquery/jquery.atmosphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/node.js/src/main/resources/jquery/jquery.atmosphere.js -------------------------------------------------------------------------------- /wasync-samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atmosphere/atmosphere-samples/HEAD/wasync-samples/pom.xml --------------------------------------------------------------------------------