package obus

  1. Overview
  2. Docs
A pure OCaml implementation of DBus

Install

dune-project
 Dependency

Authors

Maintainers

Sources

1.1.8.tar.gz
sha256=84aa0003157b0299e43b20a4127b7af04a0fd99878d7ce540bbbfbc6157dfe4f
md5=976947861f1dfa3d3da68378f25377c1

doc/obus/OBus_introspect/index.html

Module OBus_introspect

type name = string
type annotation = name * string
type argument = name option * OBus_value.T.single
type access =
  1. | Read
  2. | Write
  3. | Read_write
type member =
  1. | Method of name * argument list * argument list * annotation list
  2. | Signal of name * argument list * annotation list
  3. | Property of name * OBus_value.T.single * access * annotation list
type interface = name * member list * annotation list
type node = OBus_path.element
type document = interface list * node list
exception Parse_failure of Xmlm.pos * string
val input : Xmlm.input -> document
val output : Xmlm.output -> document -> unit
val deprecated : name
val csymbol : name
val no_reply : name
val emits_changed_signal : name