NativeBackend
Kind: Class
Domain: Core runtime
Canonical import: from cadflow import NativeBackend
Signature
class NativeBackend(session: 'NativeSession | None' = None) -> 'None'
Description
Dispatches handle-based operations to one explicit native session.
Other public imports
from cadflow.backend import NativeBackend
Parameters
| Name | Type | Required | Default | Source description |
|---|---|---|---|---|
session | 'NativeSession | None' | no | None | Not explicitly described in the source docstring. |
Returns
Type: 'None'
The source docstring does not declare additional return semantics.
Errors
The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.
Public members
| Member | Kind | Signature | Description |
|---|---|---|---|
call | method | (self, operation: 'str', *args: 'Any', **kwargs: 'Any') -> 'Any' | See the member signature. |
close | method | (self) -> 'None' | See the member signature. |
supports | method | (self, operation: 'str') -> 'bool' | See the member signature. |
Behavior and constraints
- Shape values remain bound to their owning session; do not use them after the session closes.
Import check
from cadflow import NativeBackend