better toString on transport future
This commit is contained in:
parent
7ef41eefea
commit
e489ad2221
|
@ -87,4 +87,8 @@ public class PlainTransportFuture<V extends Streamable> extends AbstractFuture<V
|
||||||
handler.handleException(exp);
|
handler.handleException(exp);
|
||||||
setException(exp);
|
setException(exp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override public String toString() {
|
||||||
|
return "future(" + handler.toString() + ")";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue