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.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
public class ActiveMQBytesMessage : ActiveMQMessage, IBytesMessage
|
||||
{
|
||||
|
|
|
@ -15,10 +15,8 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
|
@ -427,7 +425,7 @@ namespace OpenWire.Client.Commands
|
|||
return physicalName.IndexOf(COMPOSITE_SEPARATOR) > 0;
|
||||
}
|
||||
|
||||
/**
|
||||
/*
|
||||
* Returns a list of child destinations if this destination represents a composite
|
||||
* destination.
|
||||
*
|
||||
|
@ -470,7 +468,6 @@ namespace OpenWire.Client.Commands
|
|||
/**
|
||||
* @return hashCode for this instance
|
||||
*/
|
||||
|
||||
public override int GetHashCode()
|
||||
{
|
||||
int answer = 37;
|
||||
|
@ -492,7 +489,6 @@ namespace OpenWire.Client.Commands
|
|||
* @param obj the object to compare
|
||||
* @return true if this instance and obj are equivalent
|
||||
*/
|
||||
|
||||
public override bool Equals(Object obj)
|
||||
{
|
||||
bool result = this == obj;
|
||||
|
|
|
@ -17,10 +17,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ;
|
||||
using ActiveMQ.OpenWire;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
public class ActiveMQMapMessage : ActiveMQMessage, IMapMessage
|
||||
{
|
||||
|
|
|
@ -17,10 +17,7 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
public delegate void AcknowledgeHandler(ActiveMQMessage message);
|
||||
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ActiveMQObjectMessage
|
||||
|
|
|
@ -15,11 +15,8 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for ActiveMQQueue.
|
||||
|
|
|
@ -17,10 +17,7 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
public class ActiveMQStreamMessage : ActiveMQMessage
|
||||
{
|
||||
|
|
|
@ -1,51 +1,48 @@
|
|||
/*
|
||||
* 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 OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.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 const byte ID_ActiveMQTempDestination = 0;
|
||||
|
||||
public ActiveMQTempDestination() : base()
|
||||
{
|
||||
}
|
||||
|
||||
public ActiveMQTempDestination(String name) : base(name)
|
||||
{
|
||||
}
|
||||
|
||||
public override byte GetDataStructureType()
|
||||
{
|
||||
return ID_ActiveMQTempDestination;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*
|
||||
* 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;
|
||||
|
||||
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
|
||||
//
|
||||
public abstract class ActiveMQTempDestination : ActiveMQDestination
|
||||
{
|
||||
public const byte ID_ActiveMQTempDestination = 0;
|
||||
|
||||
public ActiveMQTempDestination() : base()
|
||||
{
|
||||
}
|
||||
|
||||
public ActiveMQTempDestination(String name) : base(name)
|
||||
{
|
||||
}
|
||||
|
||||
public override byte GetDataStructureType()
|
||||
{
|
||||
return ID_ActiveMQTempDestination;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,11 +15,8 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
/// <summary>
|
||||
/// A Temporary Queue
|
||||
|
|
|
@ -15,11 +15,8 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
/// <summary>
|
||||
/// A Temporary Topic
|
||||
|
|
|
@ -17,10 +17,7 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
public class ActiveMQTextMessage : ActiveMQMessage, ITextMessage
|
||||
{
|
||||
|
|
|
@ -15,11 +15,8 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for ActiveMQTopic.
|
||||
|
|
|
@ -10,10 +10,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
|
||||
public abstract class BaseCommand : AbstractCommand
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for BrokerId
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for BrokerInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConnectionError
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConnectionId
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConnectionInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConsumerId
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ConsumerInfo
|
||||
|
@ -39,6 +39,7 @@ namespace OpenWire.Client.Commands
|
|||
bool browser;
|
||||
ActiveMQDestination destination;
|
||||
int prefetchSize;
|
||||
int maximumPendingMessageLimit;
|
||||
bool dispatchAsync;
|
||||
string selector;
|
||||
string subcriptionName;
|
||||
|
@ -55,6 +56,7 @@ namespace OpenWire.Client.Commands
|
|||
+ " Browser=" + Browser
|
||||
+ " Destination=" + Destination
|
||||
+ " PrefetchSize=" + PrefetchSize
|
||||
+ " MaximumPendingMessageLimit=" + MaximumPendingMessageLimit
|
||||
+ " DispatchAsync=" + DispatchAsync
|
||||
+ " Selector=" + Selector
|
||||
+ " SubcriptionName=" + SubcriptionName
|
||||
|
@ -101,6 +103,12 @@ namespace OpenWire.Client.Commands
|
|||
set { this.prefetchSize = value; }
|
||||
}
|
||||
|
||||
public int MaximumPendingMessageLimit
|
||||
{
|
||||
get { return maximumPendingMessageLimit; }
|
||||
set { this.maximumPendingMessageLimit = value; }
|
||||
}
|
||||
|
||||
public bool DispatchAsync
|
||||
{
|
||||
get { return dispatchAsync; }
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ControlCommand
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for DataArrayResponse
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for DataResponse
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for DestinationInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for DiscoveryEvent
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ExceptionResponse
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for FlushCommand
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for IntegerResponse
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for JournalQueueAck
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for JournalTopicAck
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for JournalTrace
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for JournalTransaction
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for KeepAliveInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for LocalTransactionId
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for Message
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for MessageAck
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for MessageDispatch
|
||||
|
|
|
@ -1,87 +1,87 @@
|
|||
/*
|
||||
* 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 OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for MessageDispatchNotification
|
||||
//
|
||||
//
|
||||
// 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 class MessageDispatchNotification : BaseCommand
|
||||
{
|
||||
public const byte ID_MessageDispatchNotification = 90;
|
||||
|
||||
ConsumerId consumerId;
|
||||
ActiveMQDestination destination;
|
||||
long deliverySequenceId;
|
||||
MessageId messageId;
|
||||
|
||||
public override string ToString() {
|
||||
return GetType().Name + "["
|
||||
+ " ConsumerId=" + ConsumerId
|
||||
+ " Destination=" + Destination
|
||||
+ " DeliverySequenceId=" + DeliverySequenceId
|
||||
+ " MessageId=" + MessageId
|
||||
+ " ]";
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override byte GetDataStructureType() {
|
||||
return ID_MessageDispatchNotification;
|
||||
}
|
||||
|
||||
|
||||
// Properties
|
||||
|
||||
public ConsumerId ConsumerId
|
||||
{
|
||||
get { return consumerId; }
|
||||
set { this.consumerId = value; }
|
||||
}
|
||||
|
||||
public ActiveMQDestination Destination
|
||||
{
|
||||
get { return destination; }
|
||||
set { this.destination = value; }
|
||||
}
|
||||
|
||||
public long DeliverySequenceId
|
||||
{
|
||||
get { return deliverySequenceId; }
|
||||
set { this.deliverySequenceId = value; }
|
||||
}
|
||||
|
||||
public MessageId MessageId
|
||||
{
|
||||
get { return messageId; }
|
||||
set { this.messageId = value; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
/*
|
||||
* 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.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for MessageDispatchNotification
|
||||
//
|
||||
//
|
||||
// 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 class MessageDispatchNotification : BaseCommand
|
||||
{
|
||||
public const byte ID_MessageDispatchNotification = 90;
|
||||
|
||||
ConsumerId consumerId;
|
||||
ActiveMQDestination destination;
|
||||
long deliverySequenceId;
|
||||
MessageId messageId;
|
||||
|
||||
public override string ToString() {
|
||||
return GetType().Name + "["
|
||||
+ " ConsumerId=" + ConsumerId
|
||||
+ " Destination=" + Destination
|
||||
+ " DeliverySequenceId=" + DeliverySequenceId
|
||||
+ " MessageId=" + MessageId
|
||||
+ " ]";
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
public override byte GetDataStructureType() {
|
||||
return ID_MessageDispatchNotification;
|
||||
}
|
||||
|
||||
|
||||
// Properties
|
||||
|
||||
public ConsumerId ConsumerId
|
||||
{
|
||||
get { return consumerId; }
|
||||
set { this.consumerId = value; }
|
||||
}
|
||||
|
||||
public ActiveMQDestination Destination
|
||||
{
|
||||
get { return destination; }
|
||||
set { this.destination = value; }
|
||||
}
|
||||
|
||||
public long DeliverySequenceId
|
||||
{
|
||||
get { return deliverySequenceId; }
|
||||
set { this.deliverySequenceId = value; }
|
||||
}
|
||||
|
||||
public MessageId MessageId
|
||||
{
|
||||
get { return messageId; }
|
||||
set { this.messageId = value; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for MessageId
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ProducerId
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ProducerInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for RemoveInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for RemoveSubscriptionInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for Response
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for SessionId
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for SessionInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for ShutdownInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for SubscriptionInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for TransactionId
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for TransactionInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for WireFormatInfo
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Commands
|
||||
namespace ActiveMQ.OpenWire.Commands
|
||||
{
|
||||
//
|
||||
// Marshalling code for Open Wire Format for XATransactionId
|
||||
|
|
Loading…
Reference in New Issue