本文整理汇总了PHP中Aws\DynamoDb\DynamoDbClient::waitUntil方法的典型用法代码示例。如果您正苦于以下问题:PHP DynamoDbClient::waitUntil方法的具体用法?PHP DynamoDbClient::waitUntil怎么用?PHP DynamoDbClient::waitUntil使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Aws\DynamoDb\DynamoDbClient
的用法示例。
在下文中一共展示了DynamoDbClient::waitUntil方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: deleteTable
/**
* Delete the table
*
* @param boolean $wait Wait until the table is deleted
*/
protected static function deleteTable($wait = false)
{
self::$dynamodb->deleteTable(['TableName' => self::TABLE_NAME]);
if (!$wait) {
return;
}
self::$dynamodb->waitUntil('TableNotExists', ['TableName' => self::TABLE_NAME, 'waiter.interval' => 1, 'waiter.max_attempts' => 5]);
}
示例2: execute
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->dynamoDbClient = $this->getContainer()->get('queue.dynamodb_client');
$this->tableName = $this->getContainer()->getParameter('container_stats_dynamodb.table_name');
try {
$this->dynamoDbClient->describeTable(['TableName' => $this->tableName]);
echo 'Table ' . $this->tableName . ' already exists.' . "\n";
} catch (DynamoDbException $e) {
if (strpos($e->getMessage(), 'ResourceNotFoundException') !== false) {
echo 'Creating ' . $this->tableName . ' table ...';
$this->dynamoDbClient->createTable($this->getTableConfiguration());
$this->dynamoDbClient->waitUntil('TableExists', ['TableName' => $this->tableName, '@waiter' => ['delay' => 3, 'maxAttempts' => 20]]);
echo ' done!' . "\n";
} else {
throw $e;
}
}
}
示例3: testUpdatesTable
/**
* @depends testCreatesTable
*/
public function testUpdatesTable()
{
self::log('Updating table');
// Need to wait until the table is active
$this->client->waitUntil('TableExists', $this->table, array('status' => 'active'));
$this->client->updateTable(array('TableName' => $this->table, 'ProvisionedThroughput' => array('ReadCapacityUnits' => 20, 'WriteCapacityUnits' => 20)));
// Wait until the table is active
self::log('Waiting for the table to become active after updating');
$this->client->waitUntil('table_exists', $this->table, array('status' => 'ACTIVE'));
// Ensure the table is updated
$result = $this->client->describeTable(array('TableName' => $this->table));
// Ensure that the updates took effect
$this->assertEquals(20, $result['Table']['ProvisionedThroughput']['ReadCapacityUnits']);
$this->assertEquals(20, $result['Table']['ProvisionedThroughput']['WriteCapacityUnits']);
}
示例4: deleteTable
/**
* Delete the test table after tests complete.
*/
protected static function deleteTable()
{
self::$client->deleteTable(['TableName' => self::$tableName]);
self::$client->waitUntil('TableNotExists', ['TableName' => self::$tableName]);
}