Renamed classes with a two-letter initialism according to convention
This commit is contained in:
parent
47473e9c47
commit
1302967fc4
File diff suppressed because one or more lines are too long
@ -38,7 +38,7 @@ public class Startup {
|
|||||||
processors.add(new MessageProcessor());
|
processors.add(new MessageProcessor());
|
||||||
processors.add(new MessageStatusChangeProcessor());
|
processors.add(new MessageStatusChangeProcessor());
|
||||||
processors.add(new UserStatusChangeProcessor());
|
processors.add(new UserStatusChangeProcessor());
|
||||||
processors.add(new IdGeneratorRequestProcessor());
|
processors.add(new IDGeneratorRequestProcessor());
|
||||||
processors.add(new ContactsRequestEventProcessor());
|
processors.add(new ContactsRequestEventProcessor());
|
||||||
processors.add(new ContactOperationProcessor());
|
processors.add(new ContactOperationProcessor());
|
||||||
Server server = new Server(8080, () -> new ObjectMessageReader(), new ObjectMessageProcessor(processors));
|
Server server = new Server(8080, () -> new ObjectMessageReader(), new ObjectMessageProcessor(processors));
|
||||||
|
@ -10,13 +10,13 @@ import envoy.server.net.ObjectWriteProxy;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Project: <strong>envoy-server-standalone</strong><br>
|
* Project: <strong>envoy-server-standalone</strong><br>
|
||||||
* File: <strong>IdGeneratorRequestProcessor.java</strong><br>
|
* File: <strong>IDGeneratorRequestProcessor.java</strong><br>
|
||||||
* Created: <strong>28 Jan 2020</strong><br>
|
* Created: <strong>28 Jan 2020</strong><br>
|
||||||
*
|
*
|
||||||
* @author Kai S. K. Engelbart
|
* @author Kai S. K. Engelbart
|
||||||
* @since Envoy Server Standalone v0.1-alpha
|
* @since Envoy Server Standalone v0.1-alpha
|
||||||
*/
|
*/
|
||||||
public class IdGeneratorRequestProcessor implements ObjectProcessor<IdGeneratorRequest> {
|
public class IDGeneratorRequestProcessor implements ObjectProcessor<IdGeneratorRequest> {
|
||||||
|
|
||||||
private static final long ID_RANGE = 200;
|
private static final long ID_RANGE = 200;
|
||||||
|
|
Reference in New Issue
Block a user