1234567891011121314151617181920212223242526272829303132 |
- #region --------------- Copyright Dresser Wayne Pignone -------------
- /*
- * $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Com/INozzleEvents.cs $
- *
- * 2 07-02-02 17:17 roger.månsson
- * Renamed OnReadPumpAccumulatorsCompleted->OnReadPumpAccumulatorCompleted
- *
- * 1 07-01-05 15:13 roger.månsson
- * Created
- */
- #endregion
- using System.Runtime.InteropServices;
- namespace Wayne.ForecourtControl.Com
- {
- /// <summary>
- /// Event interface for the INozzle.
- /// </summary>
- [ComVisible(true)]
- [InterfaceType( ComInterfaceType.InterfaceIsIDispatch)]
- public interface INozzleEvents
- {
- /// <summary>
- /// Response event for the ReadPumpAccumulators request.
- /// </summary>
- /// <param name="sender">The nozzle object that fired the event.</param>
- /// <param name="reading">The pump accumulator reading data.</param>
- /// <param name="userToken">User token that was specified in the request.</param>
- void OnReadPumpAccumulatorCompleted(INozzle sender, IPumpAccumulatorReading reading, object userToken);
- }
- }
|