__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Aws\DynamoDb;
/**
* The session connection provides the underlying logic for interacting with
* Amazon DynamoDB and performs all of the reading and writing operations.
*/
interface SessionConnectionInterface
{
/**
* Reads session data from DynamoDB
*
* @param string $id Session ID
*
* @return array
*/
public function read($id);
/**
* Writes session data to DynamoDB
*
* @param string $id Session ID
* @param string $data Serialized session data
* @param bool $isChanged Whether or not the data has changed
*
* @return bool
*/
public function write($id, $data, $isChanged);
/**
* Deletes session record from DynamoDB
*
* @param string $id Session ID
*
* @return bool
*/
public function delete($id);
/**
* Performs garbage collection on the sessions stored in the DynamoDB
*
* @return bool
*/
public function deleteExpired();
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Exception | Folder | 0777 |
|
|
| BinaryValue.php | File | 743 B | 0777 |
|
| DynamoDbClient.php | File | 13.58 KB | 0777 |
|
| LockingSessionConnection.php | File | 1.89 KB | 0777 |
|
| Marshaler.php | File | 9.52 KB | 0777 |
|
| NumberValue.php | File | 552 B | 0777 |
|
| SessionConnectionConfigTrait.php | File | 5.85 KB | 0777 |
|
| SessionConnectionInterface.php | File | 1017 B | 0777 |
|
| SessionHandler.php | File | 7.85 KB | 0777 |
|
| SetValue.php | File | 960 B | 0777 |
|
| StandardSessionConnection.php | File | 4.46 KB | 0777 |
|
| WriteRequestBatch.php | File | 9.34 KB | 0777 |
|