Beispiel #1
0
 /**
  * Removes a stream from the active streams. Once a stream has been removed
  * it will no longer have messages sent to it.
  *
  * @param string $streamName Key name of a configured stream to remove.
  * @return void
  */
 public static function drop($streamName)
 {
     if (empty(self::$_Collection)) {
         self::_init();
     }
     self::$_Collection->unload($streamName);
 }