EsDestroyGraphBuilder
Applicability
Product |
Supported or Not |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Header File/Library File
- Header file: #include <ge/esb_funcs.h>
- Library files: libeager_style_graph_builder_base.so and libeager_style_graph_builder_base_static.a
Function Usage
Releases graph builder resources.
Prototype
1 | void EsDestroyGraphBuilder(EsCGraphBuilder *graph) |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
graph |
Input |
Graph builder. |
Constraints
None
Examples
1 2 3 4 5 | // Create a graph builder (EsCGraphBuilder). EsCGraphBuilder *builder = EsCreateGraphBuilder("graph_name"); // Omit the graph composition code. // Release the builder and its managed process resources. EsDestroyGraphBuilder(builder); |
Parent topic: C/C++ APIs