[hornetq-commits] JBoss hornetq SVN: r10007 - trunk/src/main/org/hornetq/core/client/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Dec 7 13:05:17 EST 2010


Author: clebert.suconic at jboss.com
Date: 2010-12-07 13:05:17 -0500 (Tue, 07 Dec 2010)
New Revision: 10007

Removed:
   trunk/src/main/org/hornetq/core/client/impl/FailoverManagerImpl.java
   trunk/src/main/org/hornetq/core/client/impl/FailoverManager_Old.java
Log:
Removing unused classes

Deleted: trunk/src/main/org/hornetq/core/client/impl/FailoverManagerImpl.java
===================================================================

Deleted: trunk/src/main/org/hornetq/core/client/impl/FailoverManager_Old.java
===================================================================
--- trunk/src/main/org/hornetq/core/client/impl/FailoverManager_Old.java	2010-12-07 12:35:50 UTC (rev 10006)
+++ trunk/src/main/org/hornetq/core/client/impl/FailoverManager_Old.java	2010-12-07 18:05:17 UTC (rev 10007)
@@ -1,66 +0,0 @@
-/*
- * Copyright 2009 Red Hat, Inc.
- * Red Hat licenses this file to you 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.
- */
-
-package org.hornetq.core.client.impl;
-
-import org.hornetq.api.core.HornetQException;
-import org.hornetq.api.core.client.ClientSession;
-import org.hornetq.api.core.client.SessionFailureListener;
-import org.hornetq.core.protocol.core.CoreRemotingConnection;
-
-/**
- * A ConnectionManager
- *
- * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
- * 
- * Created 27 Nov 2008 18:45:46
- *
- *
- */
-public interface FailoverManager_Old
-{
-   ClientSession createSession(final String username,
-                               final String password,
-                               final boolean xa,
-                               final boolean autoCommitSends,
-                               final boolean autoCommitAcks,
-                               final boolean preAcknowledge,
-                               final int ackBatchSize,
-                               final boolean cacheLargeMessageClient,
-                               final int minLargeMessageSize,
-                               final boolean blockOnAcknowledge,
-                               final boolean autoGroup,
-                               final int confirmationWindowSize,
-                               final int producerWindowSize,
-                               final int consumerWindowSize,
-                               final int producerMaxRate,
-                               final int consumerMaxRate,
-                               final boolean blockOnNonDurableSend,
-                               final boolean blockOnDurableSend,
-                               final int initialMessagePacketSize,
-                               final String groupID) throws HornetQException;
-
-   void removeSession(final ClientSessionInternal session);
-
-   public CoreRemotingConnection getConnection();
-
-   int numConnections();
-
-   int numSessions();
-
-   void addFailureListener(SessionFailureListener listener);
-
-   boolean removeFailureListener(SessionFailureListener listener);
-
-   void causeExit();
-}



More information about the hornetq-commits mailing list