FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
dotpython/src/DotPython.Abstractions/Modules/IDotPythonModule.cs at main · kidoz/dotpython · GitHub
kidoz
/
dotpython
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
dotpython
/
src
/
DotPython.Abstractions
/
Modules
/
IDotPythonModule.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (18 loc) · 828 Bytes
Breadcrumbs
dotpython
/
src
/
DotPython.Abstractions
/
Modules
/
IDotPythonModule.cs
Copy path
File metadata and controls
22 lines (18 loc) · 828 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using
DotPython
.
Contracts
;
namespace
DotPython
;
/// <summary>Represents one runtime-owned instance of a compiled DotPython module.</summary>
public
interface
IDotPythonModule
:
IAsyncDisposable
{
/// <summary>Gets the static export contract implemented by this module.</summary>
PythonModuleContract
Contract
{
get
;
}
/// <summary>Invokes a contract-defined function that returns no CLR value.</summary>
ValueTask
InvokeAsync
(
PythonFunctionInvocation
invocation
,
CancellationToken
cancellationToken
=
default
)
;
/// <summary>Invokes a contract-defined function and converts its result to <typeparamref name="TResult"/>.</summary>
ValueTask
<
TResult
>
InvokeAsync
<
TResult
>
(
PythonFunctionInvocation
invocation
,
CancellationToken
cancellationToken
=
default
)
;
}
Back
|
FazBrowse Home
|
New Git URL