From 3e22ee9001647f1703a702730ef4f5b3aab34729 Mon Sep 17 00:00:00 2001 From: Didier Garcia Date: Thu, 29 Jan 2026 16:35:44 -0500 Subject: [PATCH] docs: Remove mention of FlushPolicyBase. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc777ef..4f770f2 100644 --- a/README.md +++ b/README.md @@ -425,7 +425,7 @@ For example you might want to disable flushes if you detect the user has no netw ### Creating your own flush policies -You can create a custom FlushPolicy special for your application needs by implementing the `IFlushPolicy` interface. You can also extend the `FlushPolicyBase` class that already creates and handles the `shouldFlush` value reset. +You can create a custom FlushPolicy special for your application needs by implementing the `IFlushPolicy` interface. A `FlushPolicy` only needs to implement 2 methods: - `Schedule`: Executed when the flush policy is enabled and added to the client. This is a good place to start background operations, make async calls, configure things before execution