Skip to content

Commit

Permalink
Update customdata.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulimo authored Jan 6, 2024
1 parent 7b4f3cd commit dd3ed9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/connectors/customdata.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class ExampleDataSource : GenericDataSourceAsync<User>
}
}

protected override IEnumerable<FlowtideGenericObject<User>> DeltaLoadAsync()
protected override IEnumerable<FlowtideGenericObject<User>> FullLoadAsync()
{
var data = _userRepository.GetAllDataAsync(lastWatermark);

Expand Down Expand Up @@ -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.
Calling the triggers programatically can be useful if having an interval would cause too much latency for the data.

0 comments on commit dd3ed9f

Please sign in to comment.