123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
-
-
-
-
- abstract class Swift_ConfigurableSpool implements Swift_Spool
- {
-
- private $_message_limit;
-
-
- private $_time_limit;
-
-
-
- public function setMessageLimit($limit)
- {
- $this->_message_limit = (int) $limit;
- }
-
-
-
- public function getMessageLimit()
- {
- return $this->_message_limit;
- }
-
-
-
- public function setTimeLimit($limit)
- {
- $this->_time_limit = (int) $limit;
- }
-
-
-
- public function getTimeLimit()
- {
- return $this->_time_limit;
- }
- }
|