Files @ 16af5a343e00
Branch filter:

Location: light9/stubs/rdfdb/syncedgraph.pyi - annotation

drewp@bigasterisk.com
2019 data
Ignore-this: 5f0ae433d06c7183cf7af104c45073a7
# Stubs for rdfdb.syncedgraph (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from rdfdb.autodepgraphapi import AutoDepGraphApi
from rdfdb.currentstategraphapi import CurrentStateGraphApi
from rdfdb.grapheditapi import GraphEditApi
from typing import Any, Optional

log: Any

class SyncedGraph(CurrentStateGraphApi, AutoDepGraphApi, GraphEditApi):
    rdfdbRoot: Any = ...
    initiallySynced: Any = ...
    def __init__(self, rdfdbRoot: Any, label: Any, receiverHost: Optional[Any] = ...) -> None: ...
    def resync(self): ...
    def patch(self, p: Any) -> None: ...
    def suggestPrefixes(self, ctx: Any, prefixes: Any) -> None: ...
    def sendFailed(self, result: Any) -> None: ...