Skip to content
/ turbine Public

๐Ÿ“š RDF Stream Validation Library

License

Notifications You must be signed in to change notification settings

weso/turbine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

32 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Snomed logo

Welcome to turbine

Turbine is a library that allows to validate RDF streams against a given schema.

How to use turbine

// Turbine will connect to kafka at the given ip address and to the given topic.
Turbine turbine = new Turbine(new KafkaConsumer("127.0.0.1", "rdf-streams-topic"),
                                Validator.DEFAULT_SHACLEX_VALIDATOR);

// Start turbine
turbine.run();

// Do whatever you want...

// Will tear down the connection to kafka.
turbine.stop();