-
Notifications
You must be signed in to change notification settings - Fork 22
/
AsynchronousRegistry.php
57 lines (48 loc) · 1.69 KB
/
AsynchronousRegistry.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
declare(strict_types=1);
namespace FlixTech\SchemaRegistryApi;
use AvroSchema;
use FlixTech\SchemaRegistryApi\Schema\AvroReference;
use GuzzleHttp\Promise\PromiseInterface;
/**
* {@inheritdoc}
*/
interface AsynchronousRegistry extends Registry
{
/**
* {@inheritdoc}
*
* @return PromiseInterface Either the schema id as int or a SchemaRegistryException object when fulfilled
*/
public function register(string $subject, AvroSchema $schema, AvroReference ...$references): PromiseInterface;
/**
* {@inheritdoc}
*
* @return PromiseInterface Either the version as int or a SchemaRegistryException object when fulfilled
*/
public function schemaVersion(string $subject, AvroSchema $schema): PromiseInterface;
/**
* {@inheritdoc}
*
* @return PromiseInterface Either the schema as AvroSchema or a SchemaRegistryException object when fulfilled
*/
public function latestVersion(string $subject): PromiseInterface;
/**
* {@inheritdoc}
*
* @return PromiseInterface Either the schema id as int or a SchemaRegistryException object when fulfilled
*/
public function schemaId(string $subject, AvroSchema $schema): PromiseInterface;
/**
* {@inheritdoc}
*
* @return PromiseInterface Either the schema as AvroSchema or a SchemaRegistryException object when fulfilled
*/
public function schemaForId(int $schemaId): PromiseInterface;
/**
* {@inheritdoc}
*
* @return PromiseInterface Either the schema as AvroSchema or a SchemaRegistryException object when fulfilled
*/
public function schemaForSubjectAndVersion(string $subject, int $version): PromiseInterface;
}