#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 { /// /// Event interface for the INozzle. /// [ComVisible(true)] [InterfaceType( ComInterfaceType.InterfaceIsIDispatch)] public interface INozzleEvents { /// /// Response event for the ReadPumpAccumulators request. /// /// The nozzle object that fired the event. /// The pump accumulator reading data. /// User token that was specified in the request. void OnReadPumpAccumulatorCompleted(INozzle sender, IPumpAccumulatorReading reading, object userToken); } }