warnings cleanup

This commit is contained in:
nathan 2015-07-29 11:25:33 +02:00
parent 1c9c83f110
commit 5eaee3df47
2 changed files with 9 additions and 7 deletions

View File

@ -81,6 +81,7 @@ class Client<C extends Connection> extends EndPointClient<C> implements Connecti
/**
* Starts a REMOTE <b>only</b> client, which will connect to the specified host using the specified Connections Options
*/
@SuppressWarnings("AutoBoxing")
public
Client(final Configuration options) throws InitializationException, SecurityException, IOException {
super(options);
@ -255,7 +256,7 @@ class Client<C extends Connection> extends EndPointClient<C> implements Connecti
/**
* Allows the client to reconnect to the last connected server
*
* @throws InterruptedException if the client is unable to reconnect in the previously requested connection-timeout
* @throws IOException if the client is unable to reconnect in the previously requested connection-timeout
*/
public
void reconnect() throws IOException {
@ -265,7 +266,7 @@ class Client<C extends Connection> extends EndPointClient<C> implements Connecti
/**
* Allows the client to reconnect to the last connected server
*
* @throws InterruptedException if the client is unable to reconnect in the requested time
* @throws IOException if the client is unable to reconnect in the requested time
*/
public
void reconnect(int connectionTimeout) throws IOException {
@ -412,9 +413,9 @@ class Client<C extends Connection> extends EndPointClient<C> implements Connecti
*/
@Override
public
<Iface, Impl extends Iface> Iface createRemoteObject(final Class<Impl> remoteImplementationClass) throws IOException {
<Iface, Impl extends Iface> Iface createProxyObject(final Class<Impl> remoteImplementationClass) throws IOException {
return this.connectionManager.getConnection0()
.createRemoteObject(remoteImplementationClass);
.createProxyObject(remoteImplementationClass);
}
/**
@ -442,9 +443,9 @@ class Client<C extends Connection> extends EndPointClient<C> implements Connecti
*/
@Override
public
<Iface, Impl extends Iface> Iface getRemoteObject(final int objectId) throws IOException {
<Iface, Impl extends Iface> Iface getProxyObject(final int objectId) throws IOException {
return this.connectionManager.getConnection0()
.getRemoteObject(objectId);
.getProxyObject(objectId);
}
/**

View File

@ -87,6 +87,7 @@ class Server<C extends Connection> extends EndPointServer<C> {
/**
* Convenience method to starts a server with the specified Connection Options
*/
@SuppressWarnings("AutoBoxing")
public
Server(Configuration options) throws InitializationException, SecurityException, IOException {
// watch-out for serialization... it can be NULL incoming. The EndPoint (superclass) sets it, if null, so
@ -175,7 +176,7 @@ class Server<C extends Connection> extends EndPointServer<C> {
.channel(LocalServerChannel.class)
.option(ChannelOption.ALLOCATOR, PooledByteBufAllocator.DEFAULT)
.localAddress(new LocalAddress(this.localChannelName))
.childHandler(new RegistrationLocalHandlerServer(threadName, this.registrationWrapper));
.childHandler(new RegistrationLocalHandlerServer<C>(threadName, this.registrationWrapper));
manageForShutdown(boss);
manageForShutdown(worker);