Skip to content

Commit

Permalink
Merge pull request #781 from robmaas/master
Browse files Browse the repository at this point in the history
Added Start and Stop methods to IServiceBroker interface
  • Loading branch information
Redth committed Dec 1, 2016
2 parents 5abac61 + 61ed4d2 commit e9c392a
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 e9c392a

Please sign in to comment.