Exemplo n.º 1
0
 public Worker(string threadGroup, Endpoint endpoint, WorkerCompletedEvent callback, ICollection <Notification> notify = null, ICollection <HttpStatusCode> successHttpStatus = null)
 {
     ThreadGroup        = threadGroup;
     _Endpoint          = endpoint;
     _Notifications     = notify;
     _Callback          = callback;
     _SuccessHttpStatus = successHttpStatus;
 }
Exemplo n.º 2
0
 public JSONWorker(string threadGroup, Endpoint endpoint, WorkerCompletedEvent callback, ICollection <Notification> notifications = null)
     : base(threadGroup, endpoint, callback, notifications)
 {
 }