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:
Hiram R. Chirino 2006-03-04 08:18:29 +00:00
parent eb6e421ff6
commit 1701ac7fa5
17 changed files with 1906 additions and 1922 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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