diff options
author | Steven Shaw <steshaw@apache.org> | 2006-11-26 19:29:24 +0000 |
---|---|---|
committer | Steven Shaw <steshaw@apache.org> | 2006-11-26 19:29:24 +0000 |
commit | 4b1471a8b70bc2da921275b199753beab1023a3b (patch) | |
tree | 4d9ca2255022c57c45de07911babf806bb0a1017 /dotnet/Qpid.Client/Client/BasicMessageConsumer.cs | |
parent | 073c11477829c96d657f35a85cbf078a94a03d39 (diff) | |
download | qpid-python-4b1471a8b70bc2da921275b199753beab1023a3b.tar.gz |
A build script for Mono and a couple of small changes to enable compiling and running on
Linux.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@479408 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Client/Client/BasicMessageConsumer.cs')
-rw-r--r-- | dotnet/Qpid.Client/Client/BasicMessageConsumer.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dotnet/Qpid.Client/Client/BasicMessageConsumer.cs b/dotnet/Qpid.Client/Client/BasicMessageConsumer.cs index 6d2f1c67b6..6ffa8d1d6a 100644 --- a/dotnet/Qpid.Client/Client/BasicMessageConsumer.cs +++ b/dotnet/Qpid.Client/Client/BasicMessageConsumer.cs @@ -316,7 +316,11 @@ namespace Qpid.Client { if (_messageListener != null) { +#if __MonoCS__ + _messageListener(jmsMessage); +#else _messageListener.Invoke(jmsMessage); +#endif } else { |