akka / alpakka

Alpakka is a Reactive Enterprise Integration library for Java and Scala, based on Reactive Streams and Akka.
https://doc.akka.io/docs/alpakka/current/
Other
1.27k stars 647 forks source link

jena streamRDF connector #159

Open hochgi opened 7 years ago

hochgi commented 7 years ago

would love to see an akka streams integration with:
https://jena.apache.org/documentation/io/streaming-io.html
I haven't worked up all the details yet,
assuming a wrapper class for

base(String base) 
prefix(String prefix, String iri)
quad(Quad quad)
triple(Triple triple)

( taken from https://jena.apache.org/documentation/javadoc/arq/org/apache/jena/riot/system/StreamRDF.html )
like:

trait RDFEvent
case class Base(base: String) extends RDFEvent
case class Prefix(prefix: String, iri: String) extends RDFEvent
case class Quad(quad: Quad) extends RDFEvent
case class Triple(triple: Triple) extends RDFEvent

I guess such connector should at least provide:

patriknw commented 7 years ago

Sounds great :+1:

wmaroy commented 6 years ago

@hochgi I'm also interested in this. Did someone do any follow up work on this?

hochgi commented 6 years ago

@wmaroy not that I'm aware of. It's on my "todo list" though. Not making any promises, but will try and clear myself some time to work on it, now that I know others are interested.