From dd3ed9fb2cf9b7ae9076ff0467b3882a105b4657 Mon Sep 17 00:00:00 2001 From: Ulimo Date: Sat, 6 Jan 2024 15:21:14 +0100 Subject: [PATCH] Update customdata.md --- docs/docs/connectors/customdata.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/connectors/customdata.md b/docs/docs/connectors/customdata.md index d8506a02b..a7ddf409a 100644 --- a/docs/docs/connectors/customdata.md +++ b/docs/docs/connectors/customdata.md @@ -61,7 +61,7 @@ public class ExampleDataSource : GenericDataSourceAsync } } - protected override IEnumerable> DeltaLoadAsync() + protected override IEnumerable> FullLoadAsync() { var data = _userRepository.GetAllDataAsync(lastWatermark); @@ -97,4 +97,4 @@ Example on calling a trigger: await stream.CallTrigger("delta_load", default); ``` -Calling the triggers programatically can be useful if having an interval would cause too much latency for the data. \ No newline at end of file +Calling the triggers programatically can be useful if having an interval would cause too much latency for the data.