Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/weso/turbine

📚 RDF Stream Validation Library
https://github.com/weso/turbine

rdf shape-expressions shex stream validation

Last synced: 28 days ago
JSON representation

📚 RDF Stream Validation Library

Awesome Lists containing this project

README

        

Snomed logo

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

## How to use turbine

```java

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

```