[PLUGINS] Added StompQueue plugin, based on the implementation in lib/queue/stompqueuemanager. Updated to new STOMP library version. Dropped liberalstomp.php and stompqueuemanager.php

This commit is contained in:
Miguel Dantas
2019-08-31 20:22:08 +01:00
committed by Hugo Sales
parent a3b228399b
commit 4644f6e96b
5 changed files with 694 additions and 941 deletions

View File

@@ -71,9 +71,6 @@ abstract class QueueManager extends IoManager
case 'db':
self::$qm = new DBQueueManager();
break;
case 'stomp':
self::$qm = new StompQueueManager();
break;
default:
throw new ServerException("No queue manager class for type '$type'");
}