(self, id, lock_device, lock_timeout, name)
| 201 | pass |
| 202 | |
| 203 | def create_link(self, id, lock_device, lock_timeout, name): |
| 204 | params = (id, lock_device, lock_timeout, name) |
| 205 | return self.make_call(CREATE_LINK, params, |
| 206 | self.packer.pack_create_link_parms, |
| 207 | self.unpacker.unpack_create_link_resp) |
| 208 | |
| 209 | def device_write(self, link, io_timeout, lock_timeout, flags, data): |
| 210 | params = (link, io_timeout, lock_timeout, flags, data) |