12345678910111213141516171819202122232425262728293031323334 |
- namespace Wayne.Lib.Log
- {
-
-
-
- internal interface ISubscriptionStorage
- {
- #region Methods
-
-
-
-
-
- void Add(string eventSubscriberId, EventLogEntry eventLogEntry);
-
-
-
-
-
- void Remove(string eventSubscriberId, EventLogEntry eventLogEntry);
-
-
-
-
-
-
- EventLogEntry[] GetStoredEvents(string eventSubscriberId);
- #endregion
- }
- }
|