Skip to content

Instantly share code, notes, and snippets.

@hasghari
Created June 30, 2012 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hasghari/3025355 to your computer and use it in GitHub Desktop.
Save hasghari/3025355 to your computer and use it in GitHub Desktop.
Avro avdl file
@namespace("org.sample")
protocol AccountService {
record Account {
long id;
string name;
union {null, string} description = null;
}
Account addAccount(string name, union {null, string} description);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment