rdf-ex/lib/rdf/query/bgp/matcher.ex

16 lines
404 B
Elixir
Raw Normal View History

2020-06-08 08:16:22 +00:00
defmodule RDF.Query.BGP.Matcher do
@moduledoc !"""
2020-06-29 08:37:42 +00:00
An interface for various BGP matching algorithm implementations.
"""
2020-06-08 09:36:22 +00:00
alias RDF.Query.BGP
2020-06-12 01:23:20 +00:00
alias RDF.Graph
2020-06-08 09:36:22 +00:00
@type solution :: map
@type solutions :: [solution]
2020-06-29 08:37:42 +00:00
@callback execute(BGP.t(), Graph.t(), opts :: Keyword.t()) :: solutions
2020-06-29 08:37:42 +00:00
@callback stream(BGP.t(), Graph.t(), opts :: Keyword.t()) :: Enumerable.t()
end