You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ This rich and varied library will greatly facilitate development, it is very lig
9
9
* Possible to limit the number of simultaneously connected clients
10
10
* Header on Message requests.
11
11
12
-
### Authentication module:
12
+
### 🔒 Authentication module:
13
13
Customers log in by presenting their username, group and token.
14
14
15
15
Each client's token is never stored, yet authentication works even after a server restart, how do you think it is?
@@ -20,23 +20,23 @@ but also at each connection to compare the tokens and thus authorize the connect
20
20
21
21
If you want to "create" accounts automatically, just use this equation wherever you want.
22
22
23
-
### Autorization Mode system:
23
+
### 🔑 Autorization Mode system:
24
24
In the server options you will have the choice between:
25
25
* ALL (each client can send a Message request to all clients at once without specifying their name)
26
26
* SINGLE (each customer will have to know the name of the customers to whom he wants to send, he will have to send them one by one if there are several)
27
27
* NOTHING (no exchanges will be allowed, for all customers without exceptions)
28
28
29
-
### Open to the internet:
29
+
### 😈 Open to the internet:
30
30
You can easily open the server port to the internet if your use requires it,
31
31
You will not have to worry about the authentication system.
32
32
33
-
### Response / Callback system:
33
+
### 💣 Response / Callback system:
34
34
When a client receives a Message request, it can return a response to that request using the request id it contains in the header (the ``reply(...)`` methods will do the job for you).
35
35
36
36
On the other side, from the sender, once the request has been sent, he can wait for an asynchronous response specific to this request, with a temporary single-use biconsumer event.
37
37
38
38
39
-
### Limit
39
+
### 💤 Limit
40
40
You can easily limit the number of clients allowed to connect simultaneously
41
41
You can also allow a number of clients with the same username (so yes, you can connect clients with the same username logged in)
42
42
@@ -152,7 +152,7 @@ boolean state = server.isClosed();
152
152
153
153
Now, we will learn how to harness the potential of the API methods of the server:
154
154
155
-
### User Manager
155
+
### 👻 User Manager
156
156
The user manager makes it possible to recover the desired user instances and to be able to disconnect them
0 commit comments