1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
-
-
-
-
-
- interface Swift_KeyCache
- {
-
-
- const MODE_WRITE = 1;
-
-
- const MODE_APPEND = 2;
-
-
-
- public function setString($nsKey, $itemKey, $string, $mode);
-
-
-
- public function importFromByteStream($nsKey, $itemKey, Swift_OutputByteStream $os,
- $mode);
-
-
-
- public function getInputByteStream($nsKey, $itemKey,
- Swift_InputByteStream $is = null);
-
-
-
- public function getString($nsKey, $itemKey);
-
-
-
- public function exportToByteStream($nsKey, $itemKey, Swift_InputByteStream $is);
-
-
-
- public function hasKey($nsKey, $itemKey);
-
-
-
- public function clearKey($nsKey, $itemKey);
-
-
-
- public function clearAll($nsKey);
-
- }
|