Author: jgomes
Date: Thu Apr 22 22:34:21 2010
New Revision: 937090

URL: http://svn.apache.org/viewvc?rev=937090&view=rev
Log:
Added MessageConsumerExtensions for cleaner code usage.

Added:
    
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageConsumerExtensions.cs
Modified:
    activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj

Added: 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageConsumerExtensions.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageConsumerExtensions.cs?rev=937090&view=auto
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageConsumerExtensions.cs
 (added)
+++ 
activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/MessageConsumerExtensions.cs
 Thu Apr 22 22:34:21 2010
@@ -0,0 +1,52 @@
+/*
+ * 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.
+ */
+
+using System;
+using System.Text;
+using Apache.NMS.Util;
+
+namespace Apache.NMS
+{
+#if NET_3_5 || MONO
+       public static class MessageConsumerExtensions
+       {
+               /// <summary>
+               /// Receives the message from the destination for this 
consumer.  The object must be de-serializable from XML.
+               /// </summary>
+               public static T Receive<T>(this IMessageConsumer consumer) 
where T : class
+               {
+                       return consumer.Receive().ToObject<T>();
+               }
+
+               /// <summary>
+               /// Receives the message from the destination for this 
consumer.  The object must be de-serializable from XML.
+               /// </summary>
+               public static T Receive<T>(this IMessageConsumer consumer, 
TimeSpan timeout) where T : class
+               {
+                       return consumer.Receive(timeout).ToObject<T>();
+               }
+
+               /// <summary>
+               /// Receives the message from the destination for this 
consumer.  The object must be de-serializable from XML.
+               /// </summary>
+               public static T ReceiveNoWait<T>(this IMessageConsumer 
consumer) where T : class
+               {
+                       return consumer.ReceiveNoWait().ToObject<T>();
+               }
+       }
+#endif
+}

Modified: activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj?rev=937090&r1=937089&r2=937090&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/vs2008-nms.csproj Thu Apr 22 
22:34:21 2010
@@ -74,6 +74,7 @@
     <Compile Include="src\main\csharp\ITextMessage.cs" />
     <Compile Include="src\main\csharp\ITopic.cs" />
     <Compile Include="src\main\csharp\ITrace.cs" />
+    <Compile Include="src\main\csharp\MessageConsumerExtensions.cs" />
     <Compile Include="src\main\csharp\MessageExtensions.cs" />
     <Compile Include="src\main\csharp\MessageEOFException.cs" />
     <Compile Include="src\main\csharp\MessageFormatException.cs" />


Reply via email to