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@383070 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eb6e421ff6
commit
1701ac7fa5
|
@ -15,11 +15,10 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for AbstractCommand.
|
||||
|
|
|
@ -18,13 +18,13 @@ using System;
|
|||
using System.IO;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
using OpenWire.Client.IO;
|
||||
using System.Collections;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
|
||||
{
|
||||
/// <summary>
|
||||
/// A base class with useful implementation inheritence methods
|
||||
|
|
|
@ -17,11 +17,11 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
using OpenWire.Client.IO;
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a stream of boolean flags
|
||||
|
|
|
@ -16,10 +16,10 @@
|
|||
*/
|
||||
using System;
|
||||
using System.Text;
|
||||
using OpenWire.Client.Core;
|
||||
using System.IO;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
|
||||
{
|
||||
public struct StackTraceElement
|
||||
{
|
||||
|
|
|
@ -15,9 +15,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
|
||||
{
|
||||
/// <summary>
|
||||
/// An OpenWire command
|
||||
|
|
|
@ -15,9 +15,9 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Core {
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
/// An OpenWire command
|
||||
/// </summary>
|
||||
|
|
|
@ -15,11 +15,12 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System;
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Core {
|
||||
using ActiveMQ.OpenWire;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
/// Summary description for DataStructureSupport.
|
||||
/// </summary>
|
||||
|
|
|
@ -15,12 +15,12 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System.Collections;
|
||||
using OpenWire.Client.Commands;
|
||||
using System;
|
||||
using OpenWire.Client;
|
||||
using System.Threading;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
/// Handles the multi-threaded dispatching between the transport and the consumers
|
||||
|
|
|
@ -17,10 +17,9 @@
|
|||
using System;
|
||||
using System.Threading;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Commands;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
/// Handles asynchronous responses
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
public interface ISynchronization
|
||||
{
|
||||
|
|
|
@ -16,11 +16,9 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
|
||||
public delegate void CommandHandler(ITransport sender, Command command);
|
||||
|
|
|
@ -17,12 +17,9 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
using OpenWire.Client.IO;
|
||||
|
||||
namespace OpenWire.Client.Core {
|
||||
/// <summary>
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a marshallable entity
|
||||
/// </summary>
|
||||
public interface MarshallAware {
|
||||
|
|
|
@ -17,11 +17,9 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
using OpenWire.Client.Commands;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
public delegate object PropertyGetter(ActiveMQMessage message);
|
||||
public delegate void PropertySetter(ActiveMQMessage message, object value);
|
||||
|
|
|
@ -17,11 +17,10 @@
|
|||
using System;
|
||||
using System.IO;
|
||||
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
using OpenWire.Client.IO;
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
using ActiveMQ.OpenWire.V1;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents the wire format
|
||||
|
|
|
@ -17,10 +17,7 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Core;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
/// <summary>
|
||||
/// A default implementation of IPrimitiveMap
|
||||
|
|
|
@ -22,13 +22,9 @@ using System.Net.Sockets;
|
|||
using System.Text;
|
||||
using System.Threading;
|
||||
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
using OpenWire.Client;
|
||||
using OpenWire.Client.Commands;
|
||||
using OpenWire.Client.Core;
|
||||
using OpenWire.Client.IO;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -15,11 +15,11 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
using System.Collections;
|
||||
using OpenWire.Client.Commands;
|
||||
using System;
|
||||
using OpenWire.Client;
|
||||
|
||||
namespace OpenWire.Client.Core
|
||||
using ActiveMQ.OpenWire.Commands;
|
||||
|
||||
namespace ActiveMQ.OpenWire
|
||||
{
|
||||
public enum TransactionType
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue