Skip to content

Commit

Permalink
Added Start and Stop methods to IServiceBroker interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Maas | Estate committed Dec 1, 2016
1 parent 5abac61 commit 61ed4d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions PushSharp.Core/IServiceBroker.cs
Expand Up @@ -12,6 +12,9 @@ public interface IServiceBroker<TNotification> where TNotification : INotificati

void RaiseNotificationSucceeded (TNotification notification);
void RaiseNotificationFailed (TNotification notification, AggregateException ex);

void Start();
void Stop(bool immediately = false);
}
}

0 comments on commit 61ed4d2

Please sign in to comment.