All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xins.client.async.CallSucceededEvent Maven / Gradle / Ivy

There is a newer version: 3.0
Show newest version
/*
 * $Id: CallSucceededEvent.java,v 1.6 2006/10/24 11:12:33 agoubard Exp $
 *
 * Copyright 2003-2006 Orange Nederland Breedband B.V.
 * See the COPYRIGHT file for redistribution and use restrictions.
 */
package org.xins.client.async;

import org.xins.client.AbstractCAPI;
import org.xins.client.AbstractCAPICallRequest;
import org.xins.client.AbstractCAPICallResult;

/**
 * Event fired when the call is finished and a succeeded result is returned
 * from the call to the function.
 *
 * @version $Revision: 1.6 $ $Date: 2006/10/24 11:12:33 $
 * @author Anthony Goubard
 *
 * @since XINS 1.4.0
 */
public final class CallSucceededEvent extends CallEvent {

   //-------------------------------------------------------------------------
   // Constructors
   //-------------------------------------------------------------------------

   /**
    * Creates a successful call event.
    *
    * @param capi
    *    the CAPI used to call the function. The CAPI is used as the event source.
    *
    * @param request
    *    the request of the call to the function.
    *
    * @param duration
    *    the duration of the call.
    *
    * @param result
    *    the result of the call.
    */
   public CallSucceededEvent(AbstractCAPI capi, AbstractCAPICallRequest request,
         long duration, AbstractCAPICallResult result) {

      super(capi, request, duration);
      _result = result;
   }

   //-------------------------------------------------------------------------
   // Fields
   //-------------------------------------------------------------------------

   /**
    * The successful result returned by the function.
    */
   private AbstractCAPICallResult _result;

   //-------------------------------------------------------------------------
   // Methods
   //-------------------------------------------------------------------------

   /**
    * Gets the result returned by the function. You may want then to cast the
    * {@link org.xins.client.AbstractCAPICallResult AbstractCAPICallResult}
    * to the generated result file normally returned by the CAPI call.
    *
    * @return
    *    the successful result returned by the function.
    */
   public AbstractCAPICallResult getResult() {
      return _result;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy