Uses of Interface
se.liu.ida.hefquin.base.utils.StatsProvider
Packages that use StatsProvider
Package
Description
-
Uses of StatsProvider in se.liu.ida.hefquin.base.datastructures
Subinterfaces of StatsProvider in se.liu.ida.hefquin.base.datastructuresModifier and TypeInterfaceDescriptioninterface
Implementations of this interface can be used as an index forSolutionMapping
objects. -
Uses of StatsProvider in se.liu.ida.hefquin.base.datastructures.impl
Classes in se.liu.ida.hefquin.base.datastructures.impl that implement StatsProviderModifier and TypeClassDescriptionclass
This is a hash table based implementation ofSolutionMappingsIndex
that can be used for indexes that are meant to be used for cases in which adding and probing into the index may not happen concurrently.class
This is a hash table based implementation ofSolutionMappingsIndex
that can be used for indexes that are built on one query variable and that are meant to be used for cases in which adding and probing into the index may not happen concurrently.class
This is a hash table based implementation ofSolutionMappingsIndex
that can be used for indexes that are built on two query variables and that are meant to be used for cases in which adding and probing into the index may not happen concurrently.class
class
Wraps anotherSolutionMappingsIndex
and, for every method that returns anIterable
of solution mappings, this implementation copies theIterable
returned by the wrapped index into a new list and, then, returns that list.class
This is a special implementation ofSolutionMappingsIndex
that can be used for cases in which ALL indexed solution mappings should be returned as join partners.class
class
Base class for implementations ofSolutionMappingsIndex
that wrap anotherSolutionMappingsIndex
. -
Uses of StatsProvider in se.liu.ida.hefquin.engine.federation.access
Subinterfaces of StatsProvider in se.liu.ida.hefquin.engine.federation.access -
Uses of StatsProvider in se.liu.ida.hefquin.engine.federation.access.impl
Classes in se.liu.ida.hefquin.engine.federation.access.impl that implement StatsProviderModifier and TypeClassDescriptionclass
class
A very simpleFederationAccessManager
that simply blocks for each request.class
As a basis for classes that implement theFederationAccessManager
interface, this abstract base class provides default implementations of the methods for issuing cardinality requests.class
Abstract base class for implementations of theFederationAccessManager
interface that use request processors (seeRequestProcessor
etc).class
-
Uses of StatsProvider in se.liu.ida.hefquin.engine.queryplan.executable
Subinterfaces of StatsProvider in se.liu.ida.hefquin.engine.queryplan.executableModifier and TypeInterfaceDescriptioninterface
A specialization of theExecutableOperator
interface that captures executable operators that consume a pair of two sequences of solution mappings (which both are batched into several blocks of solution mappings).interface
An executable operator provides the implementation of the concrete algorithm that a physical operator is associated with.interface
interface
A specialization of theExecutableOperator
interface that captures executable operators that consume an arbitrary number of sequences of solution mappings (where each such sequence is batched into several blocks of solution mappings).interface
A specialization of theExecutableOperator
interface that captures executable operators that do not consume any input produced by other operators; hence, these operators are the leaf nodes in a tree representation of query execution plans.interface
A specialization of theExecutableOperator
interface that captures executable operators that consume a single input sequence of solution mappings (which are batched into several blocks). -
Uses of StatsProvider in se.liu.ida.hefquin.engine.queryplan.executable.impl
Subinterfaces of StatsProvider in se.liu.ida.hefquin.engine.queryplan.executable.implClasses in se.liu.ida.hefquin.engine.queryplan.executable.impl that implement StatsProvider -
Uses of StatsProvider in se.liu.ida.hefquin.engine.queryplan.executable.impl.iterbased
Classes in se.liu.ida.hefquin.engine.queryplan.executable.impl.iterbased that implement StatsProvider -
Uses of StatsProvider in se.liu.ida.hefquin.engine.queryplan.executable.impl.ops
Classes in se.liu.ida.hefquin.engine.queryplan.executable.impl.ops that implement StatsProviderModifier and TypeClassDescriptionclass
BaseForExecOpBindJoin<QueryType extends Query,
MemberType extends FederationMember> An abstract base class for the different variants to implement the bind join algorithm.class
A base class for all variations of the bind join algorithm that use some form of SPARQL requests.class
BaseForExecOpBindJoinWithRequestOps<QueryType extends Query,
MemberType extends FederationMember> A generic implementation of the bind join algorithm that uses executable request operators for performing the requests to the federation member.class
BaseForExecOpIndexNestedLoopsJoin<QueryType extends Query,
MemberType extends FederationMember> An abstract base class for implementations of the (external) index nested loops join algorithm.class
BaseForExecOpIndexNestedLoopsJoinWithRequestOps<QueryType extends Query,
MemberType extends FederationMember> Abstract base class to implement index nested loops joins by using request operators.class
BaseForExecOpIndexNestedLoopsJoinWithRequests<QueryType extends Query,
MemberType extends FederationMember, ReqType extends DataRetrievalRequest, RespType extends DataRetrievalResponse> Abstract base class to implement index nested loops joins by issuing requests directly and, then, using response processors.class
BaseForExecOpIndexNestedLoopsJoinWithSolMapsRequests<QueryType extends Query,
MemberType extends FederationMember, ReqType extends DataRetrievalRequest> class
BaseForExecOpIndexNestedLoopsJoinWithTPFRequests<MemberType extends FederationMember>
class
BaseForExecOpRequest<ReqType extends DataRetrievalRequest,
MemberType extends FederationMember> Base class for implementations of request operators.class
BaseForExecOpRequestWithPaging<ReqType extends DataRetrievalRequest,
MemberType extends FederationMember, PageReqType extends DataRetrievalRequest, PageRespType extends DataRetrievalResponse> Base class for implementations of request operators with requests that have to be broken into multiple requests to handle paging.class
BaseForExecOpRequestWithTPFPaging<ReqType extends DataRetrievalRequest,
MemberType extends FederationMember, PageReqType extends DataRetrievalRequest> Base class for implementations of paging-based request operators where pages areTPFResponse
objects.class
Top-level base class for all implementations ofExecutableOperator
.class
BaseForExecOpSolMapsRequest<ReqType extends DataRetrievalRequest,
MemberType extends FederationMember> class
BaseForExecOpTriplePatternRequestWithTPF<MemberType extends FederationMember>
Base class for implementations of request operators with triple pattern requests that are broken into TPF requests to handle paging.class
BaseForExecOpTriplesRequest<ReqType extends DataRetrievalRequest,
MemberType extends FederationMember> Base class for implementations of request operators with requests that return triples and that can be performed as is.class
Top-level base class for all implementations ofBinaryExecutableOp
.class
class
Implementation of (a batching version of) the bind join algorithm for cases in which the federation member accessed by the algorithm supports the brTPF interface.class
Implementation of (a batching version of) the bind join algorithm that uses FILTERs to capture the potential join partners that are sent to the federation member.class
Implementation of (a batching version of) the bind join algorithm that uses UNION.class
Implementation of (a batching version of) the bind join algorithm that uses a VALUES clause to capture the potential join partners that are sent to the federation member.class
class
class
class
A right outer join version of the hash join algorithm implemented inExecOpHashJoin
.class
class
class
class
class
class
Attention, this is a purely local implementation of the nested loops join algorithm---nothing fancy, no requests to federation members or anything.class
TODO: Provide a description of the algorithm implemented by this class.class
class
class
Implementation of an operator to request a (complete) TPF from a brTPF server.class
Implementation of an operator to request a (complete) TPF from a TPF server.class
Implementation of the symmetric hash join algorithm.class
Top-level base class for all implementations ofNaryExecutableOp
.class
Top-level base class for all implementations ofNullaryExecutableOp
.class
Top-level base class for all implementations ofUnaryExecutableOp
.class
-
Uses of StatsProvider in se.liu.ida.hefquin.engine.queryplan.executable.impl.pullbased
Classes in se.liu.ida.hefquin.engine.queryplan.executable.impl.pullbased that implement StatsProviderModifier and TypeClassDescriptionclass
Pull-based implementation ofExecPlanTask
.class
class
class
-
Uses of StatsProvider in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased
Subinterfaces of StatsProvider in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbasedClasses in se.liu.ida.hefquin.engine.queryplan.executable.impl.pushbased that implement StatsProviderModifier and TypeClassDescriptionclass
class
Push-based implementation ofExecPlanTask
.class
class
class
class