this.socketFile = new File(new File(this.socketDir), this.socketName);
//Create socket address
LOGGER.info("Socket file: "+this.socketFile.getAbsolutePath());
try {
this.socketAddress = new AFUNIXSocketAddress(this.socketFile);
} catch (IOException e) {
throw new RuntimeException("Error creating Socket Address. ",e);
}
if (this.getServerExecutors() == null) { // no executors have been set for server listener
if (this.getServerPoolSize() != UDSNettyServer.INVALID_POOL_SIZE) { // thread pool size has been set. create and use a fixed thread pool