1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette\Http;
9:
10:
11: /**
12: * User session storage for PHP < 5.4. @see http://php.net/session_set_save_handler
13: *
14: * @deprecated since PHP 5.4, use \SessionHandlerInterface
15: */
16: interface ISessionStorage
17: {
18: function open($savePath, $sessionName);
19:
20: function close();
21:
22: function read($id);
23:
24: function write($id, $data);
25:
26: function remove($id);
27:
28: function clean($maxlifetime);
29: }
30: