Skip to main content

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

NameTypeRequiredDefaultSource description
session'NativeSession | None'noNoneNot 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

MemberKindSignatureDescription
callmethod(self, operation: 'str', *args: 'Any', **kwargs: 'Any') -> 'Any'See the member signature.
closemethod(self) -> 'None'See the member signature.
supportsmethod(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

See also