All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.apicurio.registry.resolver.data.Record Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
package io.apicurio.registry.resolver.data;

/**
 * Record defines an object that is known as the data or the payload of the record and it's associated
 * metadata. A record can be message to be sent or simply an object that can be serialized and deserialized.
 */
public interface Record {

    Metadata metadata();

    T payload();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy