All Projects → xuuhaoo → Oksocket

xuuhaoo / Oksocket

Licence: mit
An blocking socket client for Android applications.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Oksocket

Bizsocket
异步socket,对一些业务场景做了支持
Stars: ✭ 469 (-80.12%)
Mutual labels:  tcp, socket, tcp-server, tcp-client, client, socket-io
Socketify
Raw TCP and UDP Sockets API on Desktop Browsers
Stars: ✭ 67 (-97.16%)
Mutual labels:  socket, tcp, socket-io, tcp-server, tcp-client, tcp-socket
Tinytcpserver
A small tcp server working under Mono or .NET (4.0) and provides hooks for handling data exchange with clients (works under mono and .net). Behaviour/protocol/reaction could be specified via custom C# script.
Stars: ✭ 14 (-99.41%)
Mutual labels:  server, tcp, socket, tcp-server, tcp-client
Simplenet
An easy-to-use, event-driven, asynchronous network application framework compiled with Java 11.
Stars: ✭ 164 (-93.05%)
Mutual labels:  server, tcp, tcp-server, tcp-client, client
Simpletcp
Simple wrapper for TCP client and server in C# with SSL support
Stars: ✭ 99 (-95.8%)
Mutual labels:  server, tcp, tcp-server, tcp-client, client
EasyFileTransfer
An easy way to transfer file with any size on network with tcp protocol.
Stars: ✭ 30 (-98.73%)
Mutual labels:  socket, tcp, tcp-server, tcp-client, tcp-socket
Zeus
A high performance, cross-platform Internet Communication Engine. Developed with native socket API. Aim at handling millions of concurrent connections.
Stars: ✭ 30 (-98.73%)
Mutual labels:  server, tcp, socket, client
tcp server client
A thin and simple C++ TCP client server
Stars: ✭ 124 (-94.74%)
Mutual labels:  tcp, tcp-server, tcp-client, tcp-socket
QTcpSocket
A simple Qt client-server TCP architecture to transfer data between peers
Stars: ✭ 62 (-97.37%)
Mutual labels:  tcp, tcp-server, tcp-client, tcp-socket
tcp-net
Build tcp applications in a stable and elegant way
Stars: ✭ 42 (-98.22%)
Mutual labels:  socket, tcp, tcp-server, tcp-client
Socket
Non-blocking socket and TLS functionality for PHP based on Amp.
Stars: ✭ 122 (-94.83%)
Mutual labels:  server, tcp, socket, client
go-eventserver
A socket server which reads events from an event source and forwards them to the user clients when appropriate
Stars: ✭ 18 (-99.24%)
Mutual labels:  socket, tcp, tcp-server, socket-server
Simplenetwork
simple TCP server / client C++ linux socket
Stars: ✭ 225 (-90.46%)
Mutual labels:  server, tcp, socket, client
Networksocket
NetworkSocket是一个以中间件(middleware)扩展通讯协议,以插件(plug)扩展服务器功能的支持SSL安全传输的通讯框架;目前支持http、websocket、fast、flex策略与silverlight策略协议。
Stars: ✭ 435 (-81.56%)
Mutual labels:  server, tcp, socket, client
Jstp
Fast RPC for browser and Node.js based on TCP, WebSocket, and MDSF
Stars: ✭ 132 (-94.4%)
Mutual labels:  server, tcp, socket, client
Deta cache
缓存cache服务器
Stars: ✭ 106 (-95.51%)
Mutual labels:  server, tcp, socket, tcp-server
Zserver4d
ZServer4D 是一套从商业项目剥离而出的云服务器中间件,可以承载百万级的分布式负载服务,并且支持IoT及内网穿透
Stars: ✭ 199 (-91.56%)
Mutual labels:  server, tcp, socket, client
Simpletcp
A minimal non-blocking TCP server written for Python 3.
Stars: ✭ 162 (-93.13%)
Mutual labels:  tcp, tcp-server, tcp-client
Zero
A Lightweight Socket Service with heartbeat, Can be easily used in TCP server development.
Stars: ✭ 161 (-93.18%)
Mutual labels:  server, socket, tcp-server
Godsharp.socket
An easy-to-use .NET socket server and client.
Stars: ✭ 35 (-98.52%)
Mutual labels:  tcp, socket, tcp-server

OkSocket Document

An blocking socket client for Java application or Andorid.

License Download Download
Open source licenses Basic Socket Library Socket Server Plugin Library

中文在线文档

OkEchoServer Open Source

  • Because the echo server already out of service.ofcause online server is not working properly, we decided to open source, hoping let more people who need point-to-point, mobile-to-mobile communication to get more help.

OkEchoServer Source

OkSocket Introduce

OkSocket is a Java library project designed to solve lightweight Socket communication, in order to enable developers to focus more on business logic, rather than TCP communication principles and some protocols. Make Socket communication more beautiful, suitable for large, medium and small Project, the rapid development of stable, maintainable, reliable Socket connection.

Feature

  • SocketClient Tcp IPV4 Connect
  • Socket Standard Protocol
  • SocketClient Reconnect
  • SocketClient Heartbeat
  • Socket Sticky Unpacking
  • Socket SSL Socket Support
  • Client Callback In Thread / Main Thread
  • Socket Client Redirect
  • SocketServer Support

Instructions

  • OkSocket instruction manual WIKI

  • Add the following configuration to the build.gradle file under the project project.

allprojects {
    repositories {
        jcenter()
    }
}
  • Make sure you have already done with put JCenter into repositories blocking in project Gradle files than you need add the following configuration to the module's build.gradle file.
dependencies {
	//Basic Socket client functionality
	api 'com.tonystark.android:socket:latest.release'
	//If you want to use server functionality, you need to compile the following libraries
	api 'com.tonystark.android:socket-server:latest.release'
}

Policy

   Copyright [2018] [徐昊]

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].