Click or drag to resize

AlgebraExtensions.ProductWithTimeout Method

Calculates the product of two multi-sets asynchronously with a timeout to restrict long running computations.

Namespace:  VDS.RDF.Query.Algebra
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public static BaseMultiset ProductWithTimeout(
	this BaseMultiset multiset,
	BaseMultiset other,
	long timeout
)

Parameters

multiset
Type: VDS.RDF.Query.Algebra.BaseMultiset
Multiset.
other
Type: VDS.RDF.Query.Algebra.BaseMultiset
Other Multiset.
timeout
Type: System.Int64
Timeout, if <=0 no timeout is used and product will be computed synchronously.

Return Value

Type: BaseMultiset

[Missing <returns> documentation for "M:VDS.RDF.Query.Algebra.AlgebraExtensions.ProductWithTimeout(VDS.RDF.Query.Algebra.BaseMultiset,VDS.RDF.Query.Algebra.BaseMultiset,System.Int64)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type BaseMultiset. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also