(params, cb)
| 167 | } |
| 168 | |
| 169 | reset (params, cb) { |
| 170 | this._callWithProcessId( |
| 171 | (newParams, cb) => this.rpc.resetMetaProcessId(newParams.id, cb), |
| 172 | params, |
| 173 | cb |
| 174 | ) |
| 175 | } |
| 176 | |
| 177 | ping (params, cb) { |
| 178 | this._callWithProcessId(this.rpc.ping, params, cb) |
nothing calls this directly
no test coverage detected