diff --git a/README.md b/README.md index 1c2ef1b..e9f3493 100644 --- a/README.md +++ b/README.md @@ -373,20 +373,6 @@ class FireflyClientPy: self.lib.ExecuteCommand.argtypes = [c_void_p, c_char_p, c_char_p] self.lib.ExecuteCommand.restype = c_char_p - # Pipeline Ops - self.lib.SetPipelineMode.argtypes = [c_void_p, c_bool] - self.lib.SetPipelineMode.restype = c_bool - self.lib.SetBatchSize.argtypes = [c_void_p, c_int] - self.lib.SetBatchSize.restype = c_bool - self.lib.FlushPipeline.argtypes = [c_void_p] - self.lib.FlushPipeline.restype = c_char_p - self.lib.GetQueuedCommandCount.argtypes = [c_void_p] - self.lib.GetQueuedCommandCount.restype = c_int - self.lib.IsPipelineMode.argtypes = [c_void_p] - self.lib.IsPipelineMode.restype = c_bool - self.lib.GetBatchSize.argtypes = [c_void_p] - self.lib.GetBatchSize.restype = c_int - def close(self): if self.client_handle: self.lib.DestroyClient(self.client_handle)