Beispiel #1
0
 protected virtual Task <T> ExecuteThrowingFunctionAsync <T>(string name, Func <Task <T> > method)
 {
     return(CoreUtility.ExecuteFunctionAsync <T>(string.Format("{0}.{1}", this.TrackPrefix, name), method, delegate(Exception ex) { throw ex; }));
 }
Beispiel #2
0
 protected virtual Task <T> ExecuteFunctionAsync <T>(string name, Func <Task <T> > method, Action <Exception> onError = null)
 {
     return(CoreUtility.ExecuteFunctionAsync <T>(string.Format("{0}.{1}", this.TrackPrefix, name), method, onError));
 }
Beispiel #3
0
 protected virtual T ExecuteFunction <T>(string name, Func <T> method, Action <Exception> onError = null, bool supressMethodLogging = false)
 {
     return(CoreUtility.ExecuteFunction <T>(string.Format("{0}.{1}", this.TrackPrefix, name), method, onError, supressMethodLogging));
 }
Beispiel #4
0
 protected virtual T ExecuteThrowingFunction <T>(string name, Func <T> method, bool supressMethodLogging = false)
 {
     return(CoreUtility.ExecuteFunction <T>(string.Format("{0}.{1}", this.TrackPrefix, name), method, delegate(Exception ex) { throw ex; }, supressMethodLogging));
 }
Beispiel #5
0
 protected virtual void ExecuteMethod(string name, Action method, Action <Exception> onError = null, bool supressMethodLogging = false)
 {
     CoreUtility.ExecuteMethod(string.Format("{0}.{1}", this.TrackPrefix, name), method, onError, supressMethodLogging);
 }