Start the server when the repository get it.
This commit is contained in:
parent
8635ffcf82
commit
7cac782a61
@ -32,6 +32,7 @@ public class ClientHandlerRepository implements AutoCloseable, UnicastCHR {
|
||||
|
||||
/**
|
||||
* Setter, allow to define the ServerListener of a repository.
|
||||
* & Start the server.
|
||||
* @param server ServerListener to set as default.
|
||||
*
|
||||
* @since 1.0
|
||||
@ -39,6 +40,7 @@ public class ClientHandlerRepository implements AutoCloseable, UnicastCHR {
|
||||
@Override
|
||||
public void setServerListener(UnicastServerListener server) {
|
||||
this.server = server;
|
||||
server.start();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -31,6 +31,7 @@ public class StoreProcessorRepository implements AutoCloseable, MulticastSPR {
|
||||
|
||||
/**
|
||||
* Setter, allow to define the ServerListener of a repository.
|
||||
* & start the server.
|
||||
* @param server ServerListener to set as default.
|
||||
*
|
||||
* @since 1.0
|
||||
@ -38,6 +39,7 @@ public class StoreProcessorRepository implements AutoCloseable, MulticastSPR {
|
||||
@Override
|
||||
public void setServerListener(MulticastServerListener server) {
|
||||
this.server = server;
|
||||
server.run();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user