Completed
Push — master ( c64f99...e257cb )
by Tim
9s
created

ThreadedStorage::getAllKeys()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8
Code Lines 5

Duplication

Lines 8
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 8
loc 8
rs 9.4285
cc 2
eloc 5
nc 2
nop 0
1
<?php
2
3
/**
4
 * AppserverIo\Storage\ThreadedStorage
5
 *
6
 * NOTICE OF LICENSE
7
 *
8
 * This source file is subject to the Open Software License (OSL 3.0)
9
 * that is available through the world-wide-web at this URL:
10
 * http://opensource.org/licenses/osl-3.0.php
11
 *
12
 * PHP version 5
13
 *
14
 * @author    Tim Wagner <[email protected]>
15
 * @copyright 2016 TechDivision GmbH <[email protected]>
16
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
17
 * @link      http://github.com/appserver-io/storage
18
 * @link      http://www.appserver.io
19
 */
20
21
namespace AppserverIo\Storage;
22
23
/**
24
 * A storage implementation that uses a \Threaded to hold the data persistent
25
 * in memory.
26
 *
27
 * This storage will completely be flushed when the the object is destroyed,
28
 * there is no automatic persistence functionality available.
29
 *
30
 * @author    Tim Wagner <[email protected]>
31
 * @copyright 2016 TechDivision GmbH <[email protected]>
32
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
33
 * @link      http://github.com/appserver-io/storage
34
 * @link      http://www.appserver.io
35
 */
36
class ThreadedStorage extends StackableStorage
0 ignored issues
show
Deprecated Code introduced by
The class AppserverIo\Storage\StackableStorage has been deprecated with message: Use \AppserverIo\Storage\ThreadedStorage instead

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
37
{
38
}
39