Call calls a method with (*Object).Go and waits for its reply.
(method string, flags Flags, args ...any)
| 31 | |
| 32 | // Call calls a method with (*Object).Go and waits for its reply. |
| 33 | func (o *Object) Call(method string, flags Flags, args ...any) *Call { |
| 34 | return <-o.createCall(context.Background(), method, flags, make(chan *Call, 1), args...).Done |
| 35 | } |
| 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 { |
no test coverage detected