com.bea.wli.common.control
Interface MessageBufferFailure


public interface MessageBufferFailure


Method Summary
 void onAsyncFailure(String methodName, Object[] argv)
          Received when a service control's JCX file has a method marked with the annotation message-buffer enable="true", and an exception occurs when trying to call out.
 void onDeliveryFailure(String messageID, String methodName, String faultCode, String faultDetail)
          Received on failure of a method's attempt to send a message for reliable delivery.
 

Method Detail

onDeliveryFailure

void onDeliveryFailure(String messageID,
                       String methodName,
                       String faultCode,
                       String faultDetail)
Received on failure of a method's attempt to send a message for reliable delivery.

Parameters:
messageID - The ReliableMessageID property
methodName - The method that attempted to deliver the message reliably.
faultCode - The fault code associated with the failure.
faultDetail - Details about the fault associated with the failure.

onAsyncFailure

void onAsyncFailure(String methodName,
                    Object[] argv)
Received when a service control's JCX file has a method marked with the annotation message-buffer enable="true", and an exception occurs when trying to call out.

Parameters:
methodName - The Service control method from which the exception was thrown.
args - The Service control method's parameters.