mirror of https://github.com/apache/activemq.git
Get it to compile after refactor
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@383069 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aae59ee589
commit
eb6e421ff6
|
@ -17,10 +17,9 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ;
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
public class ActiveMQBytesMessage : ActiveMQMessage, IBytesMessage
|
public class ActiveMQBytesMessage : ActiveMQMessage, IBytesMessage
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,10 +15,8 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
using System;
|
using System;
|
||||||
using OpenWire.Client.Commands;
|
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -427,7 +425,7 @@ namespace OpenWire.Client.Commands
|
||||||
return physicalName.IndexOf(COMPOSITE_SEPARATOR) > 0;
|
return physicalName.IndexOf(COMPOSITE_SEPARATOR) > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* Returns a list of child destinations if this destination represents a composite
|
* Returns a list of child destinations if this destination represents a composite
|
||||||
* destination.
|
* destination.
|
||||||
*
|
*
|
||||||
|
@ -470,7 +468,6 @@ namespace OpenWire.Client.Commands
|
||||||
/**
|
/**
|
||||||
* @return hashCode for this instance
|
* @return hashCode for this instance
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public override int GetHashCode()
|
public override int GetHashCode()
|
||||||
{
|
{
|
||||||
int answer = 37;
|
int answer = 37;
|
||||||
|
@ -492,7 +489,6 @@ namespace OpenWire.Client.Commands
|
||||||
* @param obj the object to compare
|
* @param obj the object to compare
|
||||||
* @return true if this instance and obj are equivalent
|
* @return true if this instance and obj are equivalent
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public override bool Equals(Object obj)
|
public override bool Equals(Object obj)
|
||||||
{
|
{
|
||||||
bool result = this == obj;
|
bool result = this == obj;
|
||||||
|
|
|
@ -17,10 +17,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
public class ActiveMQMapMessage : ActiveMQMessage, IMapMessage
|
public class ActiveMQMapMessage : ActiveMQMessage, IMapMessage
|
||||||
{
|
{
|
||||||
|
|
|
@ -17,10 +17,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
|
||||||
{
|
{
|
||||||
public delegate void AcknowledgeHandler(ActiveMQMessage message);
|
public delegate void AcknowledgeHandler(ActiveMQMessage message);
|
||||||
|
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ActiveMQObjectMessage
|
// Marshalling code for Open Wire Format for ActiveMQObjectMessage
|
||||||
|
|
|
@ -15,11 +15,8 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
using System;
|
using System;
|
||||||
using OpenWire.Client;
|
|
||||||
using OpenWire.Client.Commands;
|
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Summary description for ActiveMQQueue.
|
/// Summary description for ActiveMQQueue.
|
||||||
|
|
|
@ -17,10 +17,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
|
||||||
{
|
{
|
||||||
public class ActiveMQStreamMessage : ActiveMQMessage
|
public class ActiveMQStreamMessage : ActiveMQMessage
|
||||||
{
|
{
|
||||||
|
|
|
@ -18,10 +18,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ActiveMQTempDestination
|
// Marshalling code for Open Wire Format for ActiveMQTempDestination
|
||||||
|
|
|
@ -15,11 +15,8 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
using System;
|
using System;
|
||||||
using OpenWire.Client;
|
|
||||||
using OpenWire.Client.Commands;
|
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A Temporary Queue
|
/// A Temporary Queue
|
||||||
|
|
|
@ -15,11 +15,8 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
using System;
|
using System;
|
||||||
using OpenWire.Client;
|
|
||||||
using OpenWire.Client.Commands;
|
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A Temporary Topic
|
/// A Temporary Topic
|
||||||
|
|
|
@ -17,10 +17,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
|
||||||
{
|
{
|
||||||
public class ActiveMQTextMessage : ActiveMQMessage, ITextMessage
|
public class ActiveMQTextMessage : ActiveMQMessage, ITextMessage
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,11 +15,8 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
using System;
|
using System;
|
||||||
using OpenWire.Client;
|
|
||||||
using OpenWire.Client.Commands;
|
|
||||||
using OpenWire.Client.Core;
|
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Summary description for ActiveMQTopic.
|
/// Summary description for ActiveMQTopic.
|
||||||
|
|
|
@ -10,10 +10,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
|
|
||||||
public abstract class BaseCommand : AbstractCommand
|
public abstract class BaseCommand : AbstractCommand
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for BrokerId
|
// Marshalling code for Open Wire Format for BrokerId
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for BrokerInfo
|
// Marshalling code for Open Wire Format for BrokerInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ConnectionError
|
// Marshalling code for Open Wire Format for ConnectionError
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ConnectionId
|
// Marshalling code for Open Wire Format for ConnectionId
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ConnectionInfo
|
// Marshalling code for Open Wire Format for ConnectionInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ConsumerId
|
// Marshalling code for Open Wire Format for ConsumerId
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ConsumerInfo
|
// Marshalling code for Open Wire Format for ConsumerInfo
|
||||||
|
@ -39,6 +39,7 @@ namespace OpenWire.Client.Commands
|
||||||
bool browser;
|
bool browser;
|
||||||
ActiveMQDestination destination;
|
ActiveMQDestination destination;
|
||||||
int prefetchSize;
|
int prefetchSize;
|
||||||
|
int maximumPendingMessageLimit;
|
||||||
bool dispatchAsync;
|
bool dispatchAsync;
|
||||||
string selector;
|
string selector;
|
||||||
string subcriptionName;
|
string subcriptionName;
|
||||||
|
@ -55,6 +56,7 @@ namespace OpenWire.Client.Commands
|
||||||
+ " Browser=" + Browser
|
+ " Browser=" + Browser
|
||||||
+ " Destination=" + Destination
|
+ " Destination=" + Destination
|
||||||
+ " PrefetchSize=" + PrefetchSize
|
+ " PrefetchSize=" + PrefetchSize
|
||||||
|
+ " MaximumPendingMessageLimit=" + MaximumPendingMessageLimit
|
||||||
+ " DispatchAsync=" + DispatchAsync
|
+ " DispatchAsync=" + DispatchAsync
|
||||||
+ " Selector=" + Selector
|
+ " Selector=" + Selector
|
||||||
+ " SubcriptionName=" + SubcriptionName
|
+ " SubcriptionName=" + SubcriptionName
|
||||||
|
@ -101,6 +103,12 @@ namespace OpenWire.Client.Commands
|
||||||
set { this.prefetchSize = value; }
|
set { this.prefetchSize = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int MaximumPendingMessageLimit
|
||||||
|
{
|
||||||
|
get { return maximumPendingMessageLimit; }
|
||||||
|
set { this.maximumPendingMessageLimit = value; }
|
||||||
|
}
|
||||||
|
|
||||||
public bool DispatchAsync
|
public bool DispatchAsync
|
||||||
{
|
{
|
||||||
get { return dispatchAsync; }
|
get { return dispatchAsync; }
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ControlCommand
|
// Marshalling code for Open Wire Format for ControlCommand
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for DataArrayResponse
|
// Marshalling code for Open Wire Format for DataArrayResponse
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for DataResponse
|
// Marshalling code for Open Wire Format for DataResponse
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for DestinationInfo
|
// Marshalling code for Open Wire Format for DestinationInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for DiscoveryEvent
|
// Marshalling code for Open Wire Format for DiscoveryEvent
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ExceptionResponse
|
// Marshalling code for Open Wire Format for ExceptionResponse
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for FlushCommand
|
// Marshalling code for Open Wire Format for FlushCommand
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for IntegerResponse
|
// Marshalling code for Open Wire Format for IntegerResponse
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for JournalQueueAck
|
// Marshalling code for Open Wire Format for JournalQueueAck
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for JournalTopicAck
|
// Marshalling code for Open Wire Format for JournalTopicAck
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for JournalTrace
|
// Marshalling code for Open Wire Format for JournalTrace
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for JournalTransaction
|
// Marshalling code for Open Wire Format for JournalTransaction
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for KeepAliveInfo
|
// Marshalling code for Open Wire Format for KeepAliveInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for LocalTransactionId
|
// Marshalling code for Open Wire Format for LocalTransactionId
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for Message
|
// Marshalling code for Open Wire Format for Message
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for MessageAck
|
// Marshalling code for Open Wire Format for MessageAck
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for MessageDispatch
|
// Marshalling code for Open Wire Format for MessageDispatch
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for MessageDispatchNotification
|
// Marshalling code for Open Wire Format for MessageDispatchNotification
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for MessageId
|
// Marshalling code for Open Wire Format for MessageId
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ProducerId
|
// Marshalling code for Open Wire Format for ProducerId
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ProducerInfo
|
// Marshalling code for Open Wire Format for ProducerInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for RemoveInfo
|
// Marshalling code for Open Wire Format for RemoveInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for RemoveSubscriptionInfo
|
// Marshalling code for Open Wire Format for RemoveSubscriptionInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for Response
|
// Marshalling code for Open Wire Format for Response
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for SessionId
|
// Marshalling code for Open Wire Format for SessionId
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for SessionInfo
|
// Marshalling code for Open Wire Format for SessionInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for ShutdownInfo
|
// Marshalling code for Open Wire Format for ShutdownInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for SubscriptionInfo
|
// Marshalling code for Open Wire Format for SubscriptionInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for TransactionId
|
// Marshalling code for Open Wire Format for TransactionId
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for TransactionInfo
|
// Marshalling code for Open Wire Format for TransactionInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for WireFormatInfo
|
// Marshalling code for Open Wire Format for WireFormatInfo
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
using OpenWire.Client;
|
using ActiveMQ.OpenWire;
|
||||||
using OpenWire.Client.Core;
|
using ActiveMQ.OpenWire.Commands;
|
||||||
|
|
||||||
namespace OpenWire.Client.Commands
|
namespace ActiveMQ.OpenWire.Commands
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
// Marshalling code for Open Wire Format for XATransactionId
|
// Marshalling code for Open Wire Format for XATransactionId
|
||||||
|
|
Loading…
Reference in New Issue