Migrate Avro message converter artifacts

Migrate Avro message converter (non-schema-registry) artifacts
from Spring Cloud Schema Registry to Spring Cloud Function.

Resolves https://github.com/spring-cloud/spring-cloud-function/issues/732
Resolves #733
This commit is contained in:
Soby Chacko
2021-08-27 15:46:41 -04:00
committed by Oleg Zhurakousky
parent 953f332b1e
commit e5c335dc5f
8 changed files with 653 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
{
"namespace" : "com.example",
"type" : "record",
"name" : "Sensor",
"fields" : [
{"name":"id","type":"string"},
{"name":"temperature", "type":"float", "default":0.0},
{"name":"acceleration", "type":"float","default":0.0},
{"name":"velocity","type":"float","default":0.0}
]
}