import v2.0.0.0_RC3 | 2012-07-01
https://github.com/lucanos/CommunityID -> http://www.itadmins.net/archives/357
This commit is contained in:
@ -17,7 +17,7 @@
|
||||
* @subpackage Adapter
|
||||
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: AdapterInterface.php 16971 2009-07-22 18:05:45Z mikaelkael $
|
||||
* @version $Id: AdapterInterface.php 18951 2009-11-12 16:26:19Z alexander $
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -33,24 +33,24 @@ interface Zend_Queue_Adapter_AdapterInterface
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param array|Zend_Config $options
|
||||
* @param Zend_Queue $queue
|
||||
*
|
||||
* @param array|Zend_Config $options
|
||||
* @param Zend_Queue $queue
|
||||
* @return void
|
||||
*/
|
||||
public function __construct($options, Zend_Queue $queue = null);
|
||||
|
||||
/**
|
||||
* Retrieve queue instance
|
||||
*
|
||||
*
|
||||
* @return Zend_Queue
|
||||
*/
|
||||
public function getQueue();
|
||||
|
||||
/**
|
||||
* Set queue instnace
|
||||
*
|
||||
* @param Zend_Queue $queue
|
||||
*
|
||||
* @param Zend_Queue $queue
|
||||
* @return Zend_Queue_Adapter_AdapterInterface
|
||||
*/
|
||||
public function setQueue(Zend_Queue $queue);
|
||||
@ -69,10 +69,10 @@ interface Zend_Queue_Adapter_AdapterInterface
|
||||
/**
|
||||
* Create a new queue
|
||||
*
|
||||
* Visibility timeout is how long a message is left in the queue
|
||||
* "invisible" to other readers. If the message is acknowleged (deleted)
|
||||
* before the timeout, then the message is deleted. However, if the
|
||||
* timeout expires then the message will be made available to other queue
|
||||
* Visibility timeout is how long a message is left in the queue
|
||||
* "invisible" to other readers. If the message is acknowleged (deleted)
|
||||
* before the timeout, then the message is deleted. However, if the
|
||||
* timeout expires then the message will be made available to other queue
|
||||
* readers.
|
||||
*
|
||||
* @param string $name Queue name
|
||||
|
||||
Reference in New Issue
Block a user