View Source Avrora.Schema.Name (avrora v0.25.0)
Struct for versioned schema names like io.confluent.Payment:42
.
Link to this section Summary
Functions
Parse schema name with optional version, returning struct.
Link to this section Types
Link to this section Functions
Parse schema name with optional version, returning struct.
examples
Examples
iex> Avrora.Schema.Name.parse("Payment")
{:ok, %Avrora.Schema.Name{origin: "Payment", name: "Payment", version: nil}}
iex> Avrora.Schema.Name.parse("io.confluent.Payment:42")
{:ok, %Avrora.Schema.Name{origin: "io.confluent.Payment:42", name: "io.confluent.Payment", version: 42}}