Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Updates Stream IRIs with engine configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
pbonte committed Apr 22, 2021
1 parent 4847471 commit 6a99436
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static void main(String[] args) throws InterruptedException, IOException,
case WHO_LIKES_WHAT:
System.out.println("WHO_LIKES_WHAT example");

writer = new LBSMARDFStreamTestGenerator("Writer", "http://streamreasoning.org/jasper/streams/stream2", 5);
writer = new LBSMARDFStreamTestGenerator("Writer", "http://streamreasoning.org/CSPARQLEngine/streams/stream2", 5);
register = sr.register(writer);
writer.setWritable(register);

Expand All @@ -73,7 +73,7 @@ public static void main(String[] args) throws InterruptedException, IOException,

break;
case HOW_MANY_USERS_LIKE_THE_SAME_OBJ:
writer = new LBSMARDFStreamTestGenerator("Writer", "http://streamreasoning.org/jasper/streams/stream2", 5);
writer = new LBSMARDFStreamTestGenerator("Writer", "http://streamreasoning.org/CSPARQLEngine/streams/stream2", 5);
register = sr.register(writer);
writer.setWritable(register);

Expand All @@ -89,11 +89,11 @@ public static void main(String[] args) throws InterruptedException, IOException,
break;

case MULTI_STREAM:
writer = new LBSMARDFStreamTestGenerator("Writer", "http://streamreasoning.org/jasper/streams/stream2", 5);
writer = new LBSMARDFStreamTestGenerator("Writer", "http://streamreasoning.org/CSPARQLEngine/streams/stream2", 5);
register = sr.register(writer);
writer.setWritable(register);

LBSMARDFStreamTestGenerator writer2 = new LBSMARDFStreamTestGenerator("Writer", "http://streamreasoning.org/jasper/streams/stream3", 5);
LBSMARDFStreamTestGenerator writer2 = new LBSMARDFStreamTestGenerator("Writer", "http://streamreasoning.org/CSPARQLEngine/streams/stream3", 5);
DataStreamImpl<Graph> register2 = sr.register(writer2);
writer2.setWritable(register2);

Expand Down

0 comments on commit 6a99436

Please sign in to comment.