r4dium
unread,Feb 11, 2012, 8:38:02 PM2/11/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Akka User List
Hi,
I tried to inherit from "DefaultPromise":
public class TestPromize<T> extends DefaultPromise<T>
{
public TestPromize()
{
super( system.dispatcher() );
}
}
However, i got the following error message:
Duplicate methods named ready with the parameters (Duration,
Await.CanAwait) and (Duration, Await.CanAwait) are defined by the type
DefaultPromise<T>
Is there a way to extend DefaultPromise in Java?