public CallbackForProcessWithCallbackServiceHandler(
     OnInitializedDelegate a_OnInitialized,
     OnProgressReportDelegate a_OnProgressReport,
     OnFinishedDelegate a_OnFinished,
     OnErrorOccurredDelegate a_OnErrorOccurred)
 {
     this.m_OnInitialized    = a_OnInitialized;
     this.m_OnProgressReport = a_OnProgressReport;
     this.m_OnFinished       = a_OnFinished;
     this.m_OnErrorOccurred  = a_OnErrorOccurred;
 }
Exemplo n.º 2
0
 public PsaTracesExporter(IEnumerable <PsaTrace> traces,
                          GetOutputFilePathDelegate filePathDelegate,
                          OnFinishedDelegate finishCallback)
 {
     if (traces == null)
     {
         throw new ArgumentNullException("traces");
     }
     this.traces           = traces;
     this.filePathDelegate = filePathDelegate;
     this.finishCallback   = finishCallback;
 }
Exemplo n.º 3
0
 public virtual void Init(OnFinishedDelegate onFinished = null)
 {
 }