mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
35 lines
841 B
PHP
35 lines
841 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
namespace OCP\Snowflake;
|
|
|
|
use OCP\AppFramework\Attribute\Consumable;
|
|
|
|
/**
|
|
* Nextcloud Snowflake ID decoder
|
|
*
|
|
* @see \OCP\Snowflake\ISnowflakeGenerator for format
|
|
* @since 33.0.0
|
|
*/
|
|
#[Consumable(since: '33.0.0')]
|
|
interface ISnowflakeDecoder {
|
|
/**
|
|
* Decode information contained into Snowflake ID
|
|
*
|
|
* It includes:
|
|
* - server ID: identify server on which ID was generated
|
|
* - sequence ID: sequence number (number of snowflakes generated in the same second)
|
|
* - createdAt: timestamp at which ID was generated
|
|
* - isCli: if ID was generated using CLI or not
|
|
*
|
|
* @return Snowflake
|
|
* @since 33.0
|
|
*/
|
|
public function decode(string $snowflakeId): Snowflake;
|
|
}
|