001/* 002 * The contents of this file are subject to the license and copyright 003 * detailed in the LICENSE and NOTICE files at the root of the source 004 * tree. 005 */ 006package org.fcrepo.kernel.api; 007 008import java.util.stream.Stream; 009 010import org.apache.jena.graph.Node; 011import org.apache.jena.graph.Triple; 012 013/** 014 * A context-bearing RDF Stream interface 015 * 016 * @author acoburn 017 * @since Dec 4, 2015 018 */ 019public interface RdfStream extends Stream<Triple> { 020 021 /** 022 * @return the topic node for this stream 023 */ 024 Node topic(); 025}