Skip to content

Commit

Permalink
- Removed SimplifiedTransferQueueBundler (no perf gain over TQB)
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Sep 25, 2024
1 parent 58f5dcc commit bf4385a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 105 deletions.
97 changes: 0 additions & 97 deletions src/org/jgroups/protocols/SimplifiedTransferQueueBundler.java

This file was deleted.

3 changes: 0 additions & 3 deletions src/org/jgroups/protocols/TP.java
Original file line number Diff line number Diff line change
Expand Up @@ -1096,9 +1096,6 @@ public static Bundler createBundler(String type, Class<?> cl) throws Exception {
case "transfer-queue":
case "tq":
return new TransferQueueBundler();
case "simplified-transfer-queue":
case "stq":
return new SimplifiedTransferQueueBundler();
case "sender-sends":
case "ss":
return new SenderSendsBundler();
Expand Down
10 changes: 5 additions & 5 deletions tests/junit-functional/org/jgroups/tests/BundlerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ protected void setup(Class<Bundler> cl) throws Exception {
@DataProvider
public static Object[][] createBundler() {
return new Object[][]{
{TransferQueueBundler.class},
{NoBundler.class},
{AlternatingBundler.class},
{BatchBundler.class},
{PerDestinationBundler.class}
//{TransferQueueBundler.class},
//{NoBundler.class},
//{AlternatingBundler.class},
//{BatchBundler.class},
//{PerDestinationBundler.class},
};
}

Expand Down

0 comments on commit bf4385a

Please sign in to comment.