{"id":19775762,"url":"https://github.com/nsiatras/extasys","last_synced_at":"2025-10-16T19:47:56.745Z","repository":{"id":12075670,"uuid":"14663026","full_name":"nsiatras/extasys","owner":"nsiatras","description":"Asynchronous TCP/UDP socket library","archived":false,"fork":false,"pushed_at":"2024-09-17T10:25:05.000Z","size":2657,"stargazers_count":42,"open_issues_count":0,"forks_count":16,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-06T04:08:20.061Z","etag":null,"topics":["android","chat-application","java","java-sockets","java-sockets-library","network","socket","tcp","tcp-client","tcp-server","tcp-socket","udp","udp-client","udp-server","udp-socket"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nsiatras.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-11-24T14:53:59.000Z","updated_at":"2024-09-22T17:47:03.000Z","dependencies_parsed_at":"2024-09-12T18:09:00.843Z","dependency_job_id":null,"html_url":"https://github.com/nsiatras/extasys","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsiatras%2Fextasys","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsiatras%2Fextasys/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsiatras%2Fextasys/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nsiatras%2Fextasys/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nsiatras","download_url":"https://codeload.github.com/nsiatras/extasys/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251769208,"owners_count":21640862,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","chat-application","java","java-sockets","java-sockets-library","network","socket","tcp","tcp-client","tcp-server","tcp-socket","udp","udp-client","udp-server","udp-socket"],"created_at":"2024-11-12T05:17:26.832Z","updated_at":"2025-10-16T19:47:56.641Z","avatar_url":"https://github.com/nsiatras.png","language":"Java","funding_links":[],"categories":["网络编程"],"sub_categories":["Spring Cloud框架"],"readme":"Extasys - Asynchronous TCP/UDP socket library\n=======\n\nExtasys is a high performance, **asynchronous TCP/UDP socket library** for Java (JDK 8 and newer).\u003cbr\u003eIts **multi-threaded and lightweight** nature makes it ideal for super fast data transfer even on systems with ARM architecture like Android smartphones and single-board computers (Raspberry Pi, Orange Pi etc.).\nExtasys is designed to take the hard job done and let you think only about the message exchange (the process).\n\n\n\n```mermaid\nflowchart  TD;\n\nClient1(Client #1) ---|Data I/O|ExtasysListener(Extasys Listener);\nClient2(Client #2) ---|Data I/O|ExtasysListener(Extasys Listener);\nClient3(Client #3) ---|Data I/O|ExtasysListener(Extasys Listener);\nClient...(Client ...) ---|Data I/O|ExtasysListener(Extasys Listener);\n\nExtasysListener --\u003e ThreadPool(ThreadPool: Non-Blocking Multithreaded Data Processing);\nThreadPool --\u003e ExtasysListener;\n\n```\n\n#### Features\n* Dedicated Thread Pool for each TCPServer, TCPClient, UDPServer and UDPClient\n* Multiple listeners per server and multiple connectors per Client\n* TCP message collector with character or string message splitter\n* Auto-Handle Message Splitter characters for TCP connections\n* On-the-Fly Data Manipulations (Encryption, Encoding, Compression) using the [DataConverter](https://github.com/nsiatras/extasys/blob/master/Extasys%20for%20Java/src/Extasys/DataConvertion/DataConverter.java) object\n\nExtasys project is Developed with \u003ca href=\"https://netbeans.apache.org/\"\u003e\u003cb\u003eNetBeans IDE\u003c/b\u003e\u003ca\u003e\n\n\n\n## How to Use\n\nFully functional examples on how to use Extasys can be found [inside the repository](https://github.com/nsiatras/extasys/tree/master/Extasys%20for%20Java%20Examples).\u003cbr\u003e\nMore information on how to use Extasys can be found on the [wiki pages](https://github.com/nsiatras/extasys/wiki)\n \n #### Easy to follow examples:\n * [TCP Server Example](https://github.com/nsiatras/extasys/tree/master/Extasys%20for%20Java%20Examples/Extasys.Examples.TCPServer) - Simple TCP Server with UI\n * [TCP Client Example ](https://github.com/nsiatras/extasys/tree/master/Extasys%20for%20Java%20Examples/Extasys.Examples.TCPClient) - Simple TCP Client with UI\n * [UDP Server Example ](https://github.com/nsiatras/extasys/tree/master/Extasys%20for%20Java%20Examples/Extasys.Examples.UDPServer) - Simple UDP Server with UI\n * [UDP Client Example ](https://github.com/nsiatras/extasys/tree/master/Extasys%20for%20Java%20Examples/Extasys.Examples.UDPClient) - Simple UDP Client with UI\n \n #### Chat Server client examples:\n * [TCP Chat Server Example](https://github.com/nsiatras/extasys/tree/master/Extasys%20for%20Java%20Examples/Extasys.Examples.TCPChatServer) - Chat Server Example with UI\n* [TCP Chat Client Example](https://github.com/nsiatras/extasys/tree/master/Extasys%20for%20Java%20Examples/Extasys.Examples.TCPChatClient) - Chat Client Example with UI\n\n\n#### Quick Examples:\n* [Establish a TCP Server](https://github.com/nsiatras/extasys/wiki/Establish-a-TCP-Server)\n* [Establish a TCP Client](https://github.com/nsiatras/extasys/wiki/Establish-a-TCP-Client)\n* [Establish a UDP Server](https://github.com/nsiatras/extasys/wiki/Establish-a-UDP-Server)\n* [Establish a UDP Client](https://github.com/nsiatras/extasys/wiki/Establish-a-UDP-Client)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsiatras%2Fextasys","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnsiatras%2Fextasys","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnsiatras%2Fextasys/lists"}