Compiler¶
Summary¶
Provides access to compiler for algos.
Signature
1 |
|
Namespace¶
cAlgo.API
Methods¶
Compile (2)¶
Compile (1 of 2)
Summary
Compiles an algo.
Signature
1 |
|
Parameters
Name | Type | Description |
---|---|---|
csprojFilePath | string | Algo project file path. |
Return Value
CompilationResult
Compile (2 of 2)
Summary
Compiles an algo.
Signature
1 |
|
Parameters
Name | Type | Description |
---|---|---|
csprojFilePath | string | Algo project file path. |
options | CompilationOptions | Compilation options. |
Return Value
CompilationResult
CompileAsync (2)¶
CompileAsync (1 of 2)
Summary
Compiles an algo asynchronously and calls the passed callback when compilation finishes.
Signature
1 |
|
Parameters
Name | Type | Description |
---|---|---|
csprojFilePath | string | Algo project file path. |
callback | Action | Callback that will be called after compilation finished. |
Return Value
CompilationOperation
CompileAsync (2 of 2)
Summary
Compiles an algo asynchronously and calls the passed callback when compilation finishes.
Signature
1 |
|
Parameters
Name | Type | Description |
---|---|---|
csprojFilePath | string | Algo project file path. |
callback | Action | Callback that will be called after compilation finished. |
options | CompilationOptions | Compilation options. |
Return Value
CompilationOperation