mirror of https://github.com/apache/activemq.git
Some more refactors:
Moving the jms type interfaces to the JMS namespace, hopefully this will be come a standardized set of interfaces for dotnet in the furture. git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@383295 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bb28820a8e
commit
47a327ab83
|
@ -1,53 +0,0 @@
|
|||
/*
|
||||
* Copyright 2006 The Apache Software Foundation or its licensors, as
|
||||
* applicable.
|
||||
*
|
||||
* Licensed 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.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ
|
||||
{
|
||||
/// <summary>
|
||||
/// Exception thrown when the broker returns an error
|
||||
/// </summary>
|
||||
public class BrokerException : OpenWireException
|
||||
{
|
||||
|
||||
private BrokerError brokerError;
|
||||
|
||||
public BrokerException(BrokerError brokerError) : base(
|
||||
brokerError.ExceptionClass + " : " + brokerError.Message)
|
||||
{
|
||||
this.brokerError = brokerError;
|
||||
}
|
||||
|
||||
public BrokerError BrokerError {
|
||||
get {
|
||||
return brokerError;
|
||||
}
|
||||
}
|
||||
|
||||
public virtual string JavaStackTrace
|
||||
{
|
||||
get {
|
||||
return brokerError.StackTrace;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -14,14 +14,13 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using System.Collections;
|
||||
using ActiveMQ.Commands;
|
||||
using JMS;
|
||||
|
||||
using ActiveMQ;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
public class ActiveMQBytesMessage : ActiveMQMessage, IBytesMessage
|
||||
public class ActiveMQBytesMessage : ActiveMQMessage, IBytesMessage
|
||||
{
|
||||
public const byte ID_ActiveMQBytesMessage = 24;
|
||||
|
||||
|
@ -32,3 +31,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
}
|
||||
}
|
||||
}
|
||||
|
18
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQDestination.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQDestination.cs
Executable file → Normal file
18
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQDestination.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQDestination.cs
Executable file → Normal file
|
@ -14,15 +14,20 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ;
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using JMS;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Summary description for ActiveMQDestination.
|
||||
/// </summary>
|
||||
public abstract class ActiveMQDestination : AbstractCommand, IDestination
|
||||
|
||||
/// <summary>
|
||||
/// Summary description for ActiveMQDestination.
|
||||
/// </summary>
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
public abstract class ActiveMQDestination : AbstractCommand, IDestination
|
||||
{
|
||||
|
||||
/**
|
||||
|
@ -524,3 +529,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
public abstract ActiveMQDestination CreateDestination(String name);
|
||||
}
|
||||
}
|
||||
|
|
@ -14,15 +14,15 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using ActiveMQ;
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using JMS;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
public class ActiveMQMapMessage : ActiveMQMessage, IMapMessage
|
||||
public class ActiveMQMapMessage : ActiveMQMessage, IMapMessage
|
||||
{
|
||||
public const byte ID_ActiveMQMapMessage = 25;
|
||||
|
||||
|
@ -63,3 +63,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
|
||||
}
|
||||
}
|
||||
|
|
@ -14,14 +14,20 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using System.Collections;
|
||||
using ActiveMQ;
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using JMS;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
public delegate void AcknowledgeHandler(ActiveMQMessage message);
|
||||
public delegate void AcknowledgeHandler(ActiveMQMessage message);
|
||||
}
|
||||
|
||||
public class ActiveMQMessage : Message, IMessage, MarshallAware
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
public class ActiveMQMessage : Message, IMessage, MarshallAware
|
||||
{
|
||||
public const byte ID_ActiveMQMessage = 23;
|
||||
|
||||
|
@ -47,9 +53,12 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
|
||||
public void Acknowledge()
|
||||
{
|
||||
if (Acknowledger == null){
|
||||
throw new OpenWireException("No Acknowledger has been associated with this message: " + this);}
|
||||
else {
|
||||
if (Acknowledger == null)
|
||||
{
|
||||
throw new OpenWireException("No Acknowledger has been associated with this message: " + this);
|
||||
}
|
||||
else
|
||||
{
|
||||
Acknowledger(this);
|
||||
}
|
||||
}
|
||||
|
@ -306,3 +315,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
|
||||
}
|
||||
}
|
||||
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ActiveMQObjectMessage
|
14
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQQueue.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQQueue.cs
Executable file → Normal file
14
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQQueue.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQQueue.cs
Executable file → Normal file
|
@ -14,14 +14,17 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using JMS;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
/// <summary>
|
||||
/// Summary description for ActiveMQQueue.
|
||||
/// </summary>
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for ActiveMQQueue.
|
||||
/// </summary>
|
||||
public class ActiveMQQueue : ActiveMQDestination, IQueue
|
||||
public class ActiveMQQueue : ActiveMQDestination, IQueue
|
||||
{
|
||||
public const byte ID_ActiveMQQueue = 100;
|
||||
|
||||
|
@ -53,3 +56,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -14,14 +14,14 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using System.Collections;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
public class ActiveMQStreamMessage : ActiveMQMessage
|
||||
public class ActiveMQStreamMessage : ActiveMQMessage
|
||||
{
|
||||
public const byte ID_ActiveMQStreamMessage = 27;
|
||||
public const byte ID_ActiveMQStreamMessage = 27;
|
||||
|
||||
|
||||
|
||||
|
@ -31,7 +31,8 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
// TODO generate ToString method
|
||||
|
||||
|
||||
public override byte GetDataStructureType() {
|
||||
public override byte GetDataStructureType()
|
||||
{
|
||||
return ID_ActiveMQStreamMessage;
|
||||
}
|
||||
|
||||
|
@ -40,3 +41,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
|
||||
}
|
||||
}
|
||||
|
|
@ -15,20 +15,21 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ActiveMQTempDestination
|
||||
//
|
||||
//
|
||||
// NOTE!: This file is autogenerated - do not modify!
|
||||
// if you need to make a change, please see the Groovy scripts in the
|
||||
// activemq-core module
|
||||
//
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ActiveMQTempDestination
|
||||
//
|
||||
//
|
||||
// NOTE!: This file is autogenerated - do not modify!
|
||||
// if you need to make a change, please see the Groovy scripts in the
|
||||
// activemq-core module
|
||||
//
|
||||
public abstract class ActiveMQTempDestination : ActiveMQDestination
|
||||
public abstract class ActiveMQTempDestination : ActiveMQDestination
|
||||
{
|
||||
public const byte ID_ActiveMQTempDestination = 0;
|
||||
|
||||
|
@ -46,3 +47,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
}
|
||||
}
|
||||
}
|
||||
|
14
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQTempQueue.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQTempQueue.cs
Executable file → Normal file
14
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQTempQueue.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQTempQueue.cs
Executable file → Normal file
|
@ -14,14 +14,17 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using JMS;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
/// <summary>
|
||||
/// A Temporary Queue
|
||||
/// </summary>
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
/// <summary>
|
||||
/// A Temporary Queue
|
||||
/// </summary>
|
||||
public class ActiveMQTempQueue : ActiveMQTempDestination, ITemporaryQueue
|
||||
public class ActiveMQTempQueue : ActiveMQTempDestination, ITemporaryQueue
|
||||
{
|
||||
public const byte ID_ActiveMQTempQueue = 102;
|
||||
|
||||
|
@ -54,3 +57,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
}
|
||||
}
|
||||
}
|
||||
|
14
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQTempTopic.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQTempTopic.cs
Executable file → Normal file
14
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQTempTopic.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQTempTopic.cs
Executable file → Normal file
|
@ -14,14 +14,17 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using JMS;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
/// <summary>
|
||||
/// A Temporary Topic
|
||||
/// </summary>
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
/// <summary>
|
||||
/// A Temporary Topic
|
||||
/// </summary>
|
||||
public class ActiveMQTempTopic : ActiveMQTempDestination, ITemporaryTopic
|
||||
public class ActiveMQTempTopic : ActiveMQTempDestination, ITemporaryTopic
|
||||
{
|
||||
public const byte ID_ActiveMQTempTopic = 103;
|
||||
|
||||
|
@ -54,3 +57,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -14,12 +14,14 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using JMS;
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
public class ActiveMQTextMessage : ActiveMQMessage, ITextMessage
|
||||
public class ActiveMQTextMessage : ActiveMQMessage, ITextMessage
|
||||
{
|
||||
public const byte ID_ActiveMQTextMessage = 28;
|
||||
|
||||
|
@ -89,3 +91,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
}
|
||||
}
|
||||
}
|
||||
|
14
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQTopic.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQTopic.cs
Executable file → Normal file
14
openwire-dotnet/src/ActiveMQ/OpenWire/Commands/ActiveMQTopic.cs → openwire-dotnet/src/ActiveMQ/Commands/ActiveMQTopic.cs
Executable file → Normal file
|
@ -14,14 +14,17 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using JMS;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
/// <summary>
|
||||
/// Summary description for ActiveMQTopic.
|
||||
/// </summary>
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for ActiveMQTopic.
|
||||
/// </summary>
|
||||
public class ActiveMQTopic : ActiveMQDestination, ITopic
|
||||
public class ActiveMQTopic : ActiveMQDestination, ITopic
|
||||
{
|
||||
public const byte ID_ActiveMQTopic = 101;
|
||||
|
||||
|
@ -53,3 +56,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -7,16 +7,15 @@
|
|||
// activemq-openwire module
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using System;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
|
||||
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
|
||||
public abstract class BaseCommand : AbstractCommand
|
||||
public abstract class BaseCommand : AbstractCommand
|
||||
{
|
||||
|
||||
public override int GetHashCode()
|
||||
|
@ -48,3 +47,4 @@ namespace ActiveMQ.OpenWire.Commands
|
|||
|
||||
}
|
||||
}
|
||||
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for BrokerId
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for BrokerInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConnectionError
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConnectionId
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConnectionInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConsumerId
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConsumerInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ControlCommand
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for DataArrayResponse
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for DataResponse
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for DestinationInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for DiscoveryEvent
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ExceptionResponse
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for FlushCommand
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for IntegerResponse
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for JournalQueueAck
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for JournalTopicAck
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for JournalTrace
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for JournalTransaction
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for KeepAliveInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for LocalTransactionId
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for Message
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for MessageAck
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for MessageDispatch
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for MessageDispatchNotification
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for MessageId
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ProducerId
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ProducerInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for RemoveInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for RemoveSubscriptionInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for Response
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for SessionId
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for SessionInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ShutdownInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for SubscriptionInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for TransactionId
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for TransactionInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for WireFormatInfo
|
|
@ -19,9 +19,9 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
namespace ActiveMQ.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for XATransactionId
|
|
@ -1,9 +1,9 @@
|
|||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.Transport;
|
||||
using JMS;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Threading;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ
|
||||
{
|
||||
|
|
|
@ -18,7 +18,6 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ
|
||||
{
|
||||
|
|
|
@ -14,11 +14,10 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.Transport;
|
||||
using JMS;
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ
|
||||
{
|
||||
|
|
|
@ -18,7 +18,6 @@ using System;
|
|||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ
|
||||
{
|
||||
|
|
|
@ -14,11 +14,9 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using System;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -14,12 +14,10 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Threading;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using JMS;
|
||||
using System.Threading;
|
||||
|
||||
namespace ActiveMQ
|
||||
{
|
||||
|
|
|
@ -14,10 +14,8 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.Commands;
|
||||
using JMS;
|
||||
|
||||
namespace ActiveMQ
|
||||
{
|
||||
|
|
|
@ -14,9 +14,8 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using System;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
|
|
|
@ -14,14 +14,11 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
|
||||
|
|
|
@ -18,7 +18,6 @@ using System;
|
|||
using System.IO;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
using System;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
|
|
|
@ -14,12 +14,12 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using System.Collections;
|
||||
using ActiveMQ.Commands;
|
||||
using JMS;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Threading;
|
||||
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -14,11 +14,10 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using System;
|
||||
using System.Threading;
|
||||
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -14,11 +14,9 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using ActiveMQ.Commands;
|
||||
using System.Collections;
|
||||
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
public delegate object PropertyGetter(ActiveMQMessage message);
|
||||
|
|
|
@ -14,12 +14,11 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
using JMS;
|
||||
using System;
|
||||
using System.Collections;
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -20,7 +20,6 @@ using System.Collections;
|
|||
using System.IO;
|
||||
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
|
@ -19,8 +19,8 @@ using System;
|
|||
using System.Collections;
|
||||
using System.IO;
|
||||
|
||||
using ActiveMQ.Commands;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace ActiveMQ.OpenWire.V1
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue