Renamed classes with a two-letter initialism according to convention
This commit is contained in:
parent
a918284615
commit
eba02422e3
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 MessageStatusChangeProcessor());
|
||||
processors.add(new UserStatusChangeProcessor());
|
||||
processors.add(new IdGeneratorRequestProcessor());
|
||||
processors.add(new IDGeneratorRequestProcessor());
|
||||
processors.add(new ContactsRequestEventProcessor());
|
||||
processors.add(new ContactOperationProcessor());
|
||||
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>
|
||||
* File: <strong>IdGeneratorRequestProcessor.java</strong><br>
|
||||
* File: <strong>IDGeneratorRequestProcessor.java</strong><br>
|
||||
* Created: <strong>28 Jan 2020</strong><br>
|
||||
*
|
||||
* @author Kai S. K. Engelbart
|
||||
* @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;
|
||||
|
Reference in New Issue
Block a user