ProvideSubgraphResult
abstract class ProvideSubgraphResult<FinalResult : SubgraphResult> : Tool<FinalResult, FinalResult> (source)
Represents an abstract result type for subgraph provisioning tools.
ProvideSubgraphResult
defines functionality for specific tools that work on subgraphs and produce a SubgraphResult
as both input and output. It serves as a specialization of the generic Tool
framework.
Parameters
FinalResult
The type of the final result, which must extend SubgraphResult
.