blob: f981ca816da8521c31207d51e4320997e2aa0957 [file] [log] [blame]
using System;
using System.Messaging;
using Apache.NMS.MSMQ;
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Apache.NMS.MSMQ.Readers
{
/// <summary>
/// MSMQ message reader, returning messages matching the specified
/// message identifier.
/// </summary>
public class ByIdMessageReader : AbstractMessageReader
{
private string messageId;
/// <summary>
/// Constructor.
/// </summary>
/// <param name="messageQueue">The MSMQ message queue from which
/// messages will be read.</param>
/// <param name="messageConverter">A message converter for mapping
/// MSMQ messages to NMS messages.</param>
/// <param name="messageId">The message identifier of messages to
/// be read.</param>
public ByIdMessageReader(MessageQueue messageQueue,
IMessageConverter messageConverter, string messageId)
: base(messageQueue, messageConverter)
{
this.messageId = messageId;
}
/// <summary>
/// Returns without removing (peeks) the first message in the queue
/// referenced by this MessageQueue matching the selection criteria.
/// The Peek method is synchronous, so it blocks the current thread
/// until a message becomes available.
/// </summary>
/// <returns>Peeked message.</returns>
public override IMessage Peek()
{
return Convert(messageQueue.PeekById(messageId));
}
/// <summary>
/// Returns without removing (peeks) the first message in the queue
/// referenced by this MessageQueue matching the selection criteria.
/// The Peek method is synchronous, so it blocks the current thread
/// until a message becomes available or the specified time-out occurs.
/// </summary>
/// <param name="timeSpan">Reception time-out.</param>
/// <returns>Peeked message.</returns>
public override IMessage Peek(TimeSpan timeSpan)
{
return Convert(messageQueue.PeekById(messageId, timeSpan));
}
/// <summary>
/// Receives the first message available in the queue referenced by
/// the MessageQueue matching the selection criteria.
/// This call is synchronous, and blocks the current thread of execution
/// until a message is available.
/// </summary>
/// <returns>Received message.</returns>
public override IMessage Receive()
{
return Convert(messageQueue.ReceiveById(messageId));
}
/// <summary>
/// Receives the first message available in the queue referenced by the
/// MessageQueue matching the selection criteria, and waits until either
/// a message is available in the queue, or the time-out expires.
/// </summary>
/// <param name="timeSpan">Reception time-out.</param>
/// <returns>Received message.</returns>
public override IMessage Receive(TimeSpan timeSpan)
{
return Convert(messageQueue.ReceiveById(messageId, timeSpan));
}
/// <summary>
/// Receives the first message available in the transactional queue
/// referenced by the MessageQueue matching the selection criteria.
/// This call is synchronous, and blocks the current thread of execution
/// until a message is available.
/// </summary>
/// <param name="transaction">Transaction.</param>
/// <returns>Received message.</returns>
public override IMessage Receive(MessageQueueTransaction transaction)
{
return Convert(messageQueue.ReceiveById(messageId, transaction));
}
/// <summary>
/// Receives the first message available in the transactional queue
/// referenced by the MessageQueue matching the selection criteria,
/// and waits until either a message is available in the queue, or the
/// time-out expires.
/// </summary>
/// <param name="timeSpan">Reception time-out.</param>
/// <param name="transaction">Transaction.</param>
/// <returns>Received message.</returns>
public override IMessage Receive(TimeSpan timeSpan,
MessageQueueTransaction transaction)
{
return Convert(messageQueue.ReceiveById(messageId, timeSpan,
transaction));
}
/// <summary>
/// Checks if an MSMQ message matches the selection criteria.
/// </summary>
/// <param name="message">MSMQ message.</param>
/// <return>true if the message matches the selection criteria.</return>
public override bool Matches(Message message)
{
// NB: case-sensitive match
return message.Id == messageId;
}
}
}