CallWithContext acts like Call but takes a context
(ctx context.Context, method string, flags Flags, args ...any)
| 36 | |
| 37 | // CallWithContext acts like Call but takes a context |
| 38 | func (o *Object) CallWithContext(ctx context.Context, method string, flags Flags, args ...any) *Call { |
| 39 | return <-o.createCall(ctx, method, flags, make(chan *Call, 1), args...).Done |
| 40 | } |
| 41 | |
| 42 | // AddMatchSignal subscribes BusObject to signals from specified interface, |
| 43 | // method (member). Additional filter rules can be added via WithMatch* option constructors. |
nothing calls this directly
no test coverage detected