Updated comments

This commit is contained in:
Robinson 2023-03-01 22:39:38 +01:00
parent b29e6e583c
commit 66147174cc
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C

View File

@ -85,7 +85,7 @@ open class Server<CONNECTION : Connection>(
* The server can only be accessed in an ASYNC manner. This means that the server can only be used in RESPONSE to events. If you access the
* server OUTSIDE of events, you will get inaccurate information from the server (such as getConnections())
*
* To put it bluntly, ONLY have the server do work inside of a listener!
* To put it bluntly, ONLY have the server do work inside a listener!
*
* @param config these are the specific connection options
* @param loggerName allows for a custom logger name for this endpoint (for when there are multiple endpoints)
@ -103,7 +103,7 @@ open class Server<CONNECTION : Connection>(
* The server can only be accessed in an ASYNC manner. This means that the server can only be used in RESPONSE to events. If you access the
* server OUTSIDE of events, you will get inaccurate information from the server (such as getConnections())
*
* To put it bluntly, ONLY have the server do work inside of a listener!
* To put it bluntly, ONLY have the server do work inside a listener!
*
* @param config these are the specific connection options
*/