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:
Hiram R. Chirino 2006-03-04 08:18:17 +00:00
parent aae59ee589
commit eb6e421ff6
52 changed files with 277 additions and 298 deletions

View File

@ -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
{

View File

@ -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;

View File

@ -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
{

View File

@ -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);

View File

@ -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

View File

@ -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.

View File

@ -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
{

View File

@ -18,10 +18,7 @@
using System;
using System.Collections;
using OpenWire.Client;
using OpenWire.Client.Core;
namespace OpenWire.Client.Commands
namespace ActiveMQ.OpenWire.Commands
{
//
// Marshalling code for Open Wire Format for ActiveMQTempDestination

View File

@ -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

View File

@ -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

View File

@ -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
{

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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; }

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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 MessageDispatchNotification

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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