ILockingQueue.cs 429 B

123456789101112
  1. //----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Channels
  5. {
  6. interface ILockingQueue
  7. {
  8. void DeleteMessage(long lookupId, TimeSpan timeout);
  9. void UnlockMessage(long lookupId, TimeSpan timeout);
  10. }
  11. }