Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 615 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 615 Bytes

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();