public class CachingRegistryClient extends Object implements SchemaRegistryClient
| Constructor and Description |
|---|
CachingRegistryClient(SchemaRegistryClient delegate) |
| Modifier and Type | Method and Description |
|---|---|
String |
fetch(int id)
Retrieves a schema by its identifier.
|
String |
fetch(SchemaReference schemaReference)
Retrieves a schema by its reference (subject and version).
|
SchemaRegistrationResponse |
register(String subject,
String format,
String schema)
Registers a schema with the remote repository returning the unique identifier
associated with this schema.
|
public CachingRegistryClient(SchemaRegistryClient delegate)
public SchemaRegistrationResponse register(String subject, String format, String schema)
SchemaRegistryClientregister in interface SchemaRegistryClientsubject - the full name of the schemaschema - string representation of the schemaSchemaRegistrationResponse representing the result of the
operation@Cacheable(cacheNames="org.springframework.cloud.stream.schema.client.schemaByReferenceCache") public String fetch(SchemaReference schemaReference)
SchemaRegistryClientfetch in interface SchemaRegistryClientschemaReference - a SchemaReference used to identify the target
schema.@Cacheable(cacheNames="org.springframework.cloud.stream.schema.client.schemaByIdCache") public String fetch(int id)
SchemaRegistryClientfetch in interface SchemaRegistryClientid - the id of the target schema.Copyright © 2019 Pivotal Software, Inc.. All rights reserved.