Beispiel #1
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="InMemoryInboundLog" /> class.
 /// </summary>
 /// <param name="sharedItems">
 ///     The log entries shared between the instances of this repository.
 /// </param>
 public InMemoryInboundLog(TransactionalListSharedItems <InboundLogEntry> sharedItems)
     : base(sharedItems)
 {
 }
Beispiel #2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="InMemoryOutbox" /> class.
 /// </summary>
 /// <param name="sharedItems">
 ///     The messages shared between the instances of this repository.
 /// </param>
 public InMemoryOutbox(TransactionalListSharedItems <OutboxStoredMessage> sharedItems)
     : base(sharedItems)
 {
 }