Get it to compile after refactor

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@383071 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-03-04 08:18:50 +00:00
parent 1701ac7fa5
commit fcbb2b22e8
26 changed files with 265 additions and 262 deletions

View File

@ -16,10 +16,11 @@
*/
using System;
using System.Collections;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
/// <summary>
/// Exception thrown when the broker returns an error

View File

@ -1,10 +1,11 @@
using System;
using System.Collections;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
using System.Threading;
namespace OpenWire.Client
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
/// <summary>
/// Represents a connection with a message broker

View File

@ -16,11 +16,13 @@
*/
using System;
using System.Collections;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client {
/// <summary>
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
/// <summary>
/// Exception thrown when a connection is used that it already closed
/// </summary>
public class ConnectionClosedException : OpenWireException {

View File

@ -16,10 +16,11 @@
*/
using System;
using System.Collections;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
/// <summary>
/// Represents a connection with a message broker

View File

@ -16,11 +16,13 @@
*/
using System;
using System.Collections;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client {
/// <summary>
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
/// <summary>
/// Exception thrown when a consumer is used that it already closed
/// </summary>
public class ConsumerClosedException : OpenWireException {

View File

@ -15,11 +15,13 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client {
/// <summary>
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
/// <summary>
/// Summary description for DestinationFilter.
/// </summary>
public abstract class DestinationFilter {

View File

@ -15,9 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client
namespace ActiveMQ
{
/// <summary>
/// Represents a binary based message

View File

@ -15,9 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client
namespace ActiveMQ
{
public enum AcknowledgementMode

View File

@ -15,9 +15,9 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client {
namespace ActiveMQ
{
/// <summary>
/// A Factory of IConnection objects

View File

@ -15,10 +15,10 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client {
/// <summary>
namespace ActiveMQ
{
/// <summary>
/// Summary description for Destination.
/// </summary>
public interface IDestination {

View File

@ -15,9 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client
namespace ActiveMQ
{
/// <summary>
/// Represents a Map message which contains key and value pairs which are

View File

@ -15,9 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client
namespace ActiveMQ
{
/// <summary>
/// Represents a message either to be sent to a message broker or received from a message broker

View File

@ -15,9 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client
namespace ActiveMQ
{
public delegate void MessageListener(IMessage message);

View File

@ -15,9 +15,9 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client {
namespace ActiveMQ
{
/// <summary>
/// An object capable of sending messages to some destination
/// </summary>

View File

@ -17,9 +17,7 @@
using System;
using System.Collections;
using OpenWire.Client.Commands;
namespace OpenWire.Client
namespace ActiveMQ
{
/// <summary>
/// Represents a Map of primitive types where the keys are all string instances

View File

@ -15,10 +15,10 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client {
/// <summary>
namespace ActiveMQ
{
/// <summary>
/// Summary description for IQueue.
/// </summary>
public interface IQueue : IDestination {

View File

@ -15,9 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client
namespace ActiveMQ
{
/// <summary>
/// Represents a single unit of work on an IConnection.

View File

@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace OpenWire.Client
namespace ActiveMQ
{
public interface IStartable
{

View File

@ -15,10 +15,10 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client {
/// <summary>
namespace ActiveMQ
{
/// <summary>
/// Summary description for ITemporaryQueue.
/// </summary>
public interface ITemporaryQueue : IDestination {

View File

@ -15,10 +15,10 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client {
/// <summary>
namespace ActiveMQ
{
/// <summary>
/// Summary description for TemporaryTopic.
/// </summary>
public interface ITemporaryTopic : IDestination {

View File

@ -15,9 +15,8 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client
namespace ActiveMQ
{
/// <summary>
/// Represents a text based message

View File

@ -15,10 +15,10 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client {
/// <summary>
namespace ActiveMQ
{
/// <summary>
/// Summary description for ITopic.
/// </summary>
public interface ITopic : IDestination {

View File

@ -17,10 +17,11 @@
using System;
using System.Collections;
using System.Threading;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
public enum AckType
{

View File

@ -15,9 +15,11 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
namespace OpenWire.Client
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
/// <summary>
/// An object capable of sending messages to some destination

View File

@ -16,11 +16,10 @@
*/
using System;
using System.Collections;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
namespace OpenWire.Client {
/// <summary>
namespace ActiveMQ
{
/// <summary>
/// Represents an OpenWire exception
/// </summary>
public class OpenWireException : Exception {

View File

@ -15,11 +15,12 @@
* limitations under the License.
*/
using System;
using OpenWire.Client.Commands;
using OpenWire.Client.Core;
using System.Collections;
namespace OpenWire.Client
using ActiveMQ.OpenWire;
using ActiveMQ.OpenWire.Commands;
namespace ActiveMQ
{
/// <summary>
/// Default provider of ISession