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:
Hiram R. Chirino 2006-03-05 08:28:53 +00:00
parent bb28820a8e
commit 47a327ab83
162 changed files with 6352 additions and 6194 deletions

View File

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

View File

@ -14,12 +14,11 @@
* 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
{
@ -32,3 +31,4 @@ namespace ActiveMQ.OpenWire.Commands
}
}
}

View File

@ -14,14 +14,19 @@
* 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>
/// <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);
}
}

View File

@ -14,13 +14,13 @@
* 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
{
@ -63,3 +63,4 @@ namespace ActiveMQ.OpenWire.Commands
}
}

View File

@ -14,13 +14,19 @@
* 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);
}
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
}
}

View File

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

View File

@ -14,13 +14,16 @@
* 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 const byte ID_ActiveMQQueue = 100;
@ -53,3 +56,4 @@ namespace ActiveMQ.OpenWire.Commands
}
}
}

View File

@ -14,10 +14,10 @@
* 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
{
@ -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
}
}

View File

@ -15,19 +15,20 @@
* 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 const byte ID_ActiveMQTempDestination = 0;
@ -46,3 +47,4 @@ namespace ActiveMQ.OpenWire.Commands
}
}
}

View File

@ -14,13 +14,16 @@
* 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 const byte ID_ActiveMQTempQueue = 102;
@ -54,3 +57,4 @@ namespace ActiveMQ.OpenWire.Commands
}
}
}

View File

@ -14,13 +14,16 @@
* 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 const byte ID_ActiveMQTempTopic = 103;
@ -54,3 +57,4 @@ namespace ActiveMQ.OpenWire.Commands
}
}
}

View File

@ -14,10 +14,12 @@
* 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
{
@ -89,3 +91,4 @@ namespace ActiveMQ.OpenWire.Commands
}
}
}

View File

@ -14,13 +14,16 @@
* 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 const byte ID_ActiveMQTopic = 101;
@ -53,3 +56,4 @@ namespace ActiveMQ.OpenWire.Commands
}
}
}

View File

@ -7,15 +7,14 @@
// 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
{
@ -48,3 +47,4 @@ namespace ActiveMQ.OpenWire.Commands
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -18,7 +18,6 @@ using System;
using System.Collections;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{

View File

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

View File

@ -18,7 +18,6 @@ using System;
using System.Collections;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -18,7 +18,6 @@ using System;
using System.IO;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ.OpenWire

View File

@ -17,7 +17,6 @@
using System;
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ.OpenWire
{

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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