1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
from typing import Any
from ..orm.instrumentation import ClassManager, InstrumentationFactory
INSTRUMENTATION_MANAGER: str
def find_native_user_instrumentation_hook(cls): ...
instrumentation_finders: Any
class ExtendedInstrumentationRegistry(InstrumentationFactory):
def unregister(self, class_) -> None: ...
def manager_of_class(self, cls): ...
def state_of(self, instance): ...
def dict_of(self, instance): ...
class InstrumentationManager:
def __init__(self, class_) -> None: ...
def manage(self, class_, manager) -> None: ...
def unregister(self, class_, manager) -> None: ...
def manager_getter(self, class_): ...
def instrument_attribute(self, class_, key, inst) -> None: ...
def post_configure_attribute(self, class_, key, inst) -> None: ...
def install_descriptor(self, class_, key, inst) -> None: ...
def uninstall_descriptor(self, class_, key) -> None: ...
def install_member(self, class_, key, implementation) -> None: ...
def uninstall_member(self, class_, key) -> None: ...
def instrument_collection_class(self, class_, key, collection_class): ...
def get_instance_dict(self, class_, instance): ...
def initialize_instance_dict(self, class_, instance) -> None: ...
def install_state(self, class_, instance, state) -> None: ...
def remove_state(self, class_, instance) -> None: ...
def state_getter(self, class_): ...
def dict_getter(self, class_): ...
class _ClassInstrumentationAdapter(ClassManager):
def __init__(self, class_, override) -> None: ...
def manage(self) -> None: ...
def unregister(self) -> None: ...
def manager_getter(self): ...
def instrument_attribute(self, key, inst, propagated: bool = ...) -> None: ...
def post_configure_attribute(self, key) -> None: ...
def install_descriptor(self, key, inst) -> None: ...
def uninstall_descriptor(self, key) -> None: ...
def install_member(self, key, implementation) -> None: ...
def uninstall_member(self, key) -> None: ...
def instrument_collection_class(self, key, collection_class): ...
def initialize_collection(self, key, state, factory): ...
def new_instance(self, state: Any | None = ...): ...
def setup_instance(self, instance, state: Any | None = ...): ...
def teardown_instance(self, instance) -> None: ...
def has_state(self, instance): ...
def state_getter(self): ...
def dict_getter(self): ...
|