KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > ipanema > asyncinvoke > UndeliverableCallback


1 /*
2  * Created on Mar 23, 2005
3  */

4 package com.nightlabs.ipanema.asyncinvoke;
5
6 /**
7  * This callback is triggered after the last invocation retry has failed. Hence,
8  * this callback happens either none or one time for an invocation and therefore is
9  * definite.
10  *
11  * @author Marco Schulze - marco at nightlabs dot de
12  */

13 public abstract class UndeliverableCallback
14 extends BaseInvocation
15 {
16
17     public UndeliverableCallback()
18     {
19     }
20
21     public abstract void handle(AsyncInvokeEnvelope envelope)
22     throws Exception JavaDoc;
23 }
24
Popular Tags