From 0743b6c7f1b1e462489ce843c54e04888aa23c07 Mon Sep 17 00:00:00 2001 From: Jacob Schmidt Date: Sun, 13 Apr 2025 17:07:38 -0500 Subject: [PATCH] feat(client): Remove pipeline operations from FireflyClientPy This commit removes the pipeline-related function definitions from the `FireflyClientPy` class in the `README.md` file. These functions are no longer needed in the Python client as pipeline operations are handled differently. The removed functions include: - `SetPipelineMode` - `SetBatchSize` - `FlushPipeline` - `GetQueuedCommandCount` - `IsPipelineMode` - `GetBatchSize` --- README.md | 14 -------------- 1 file changed, 14 deletions(-) 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)