Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the event-bus group with 2 updates #111

Merged
merged 2 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/EventBusSample/EventBusSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<ItemGroup>
<PackageReference Include="DistributedLock.FileSystem" Version="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Tingle.EventBus.Transports.InMemory" Version="0.21.2" />
<PackageReference Include="Tingle.EventBus.Transports.InMemory" Version="0.22.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static class EventBusBuilderExtensions
/// <returns></returns>
public static EventBusBuilder AddPeriodicTasksTrigger(this EventBusBuilder builder)
{
return builder.AddConsumer<TriggerPeriodicTaskEventConsumer>();
return builder.AddConsumer<TriggerPeriodicTaskEvent, TriggerPeriodicTaskEventConsumer>();
}

/// <summary>Register the necessary services for triggering periodic tasks.</summary>
Expand All @@ -20,6 +20,6 @@ public static EventBusBuilder AddPeriodicTasksTrigger(this EventBusBuilder build
/// <returns></returns>
public static EventBusBuilder AddPeriodicTasksTrigger(this EventBusBuilder builder, Action<EventRegistration, EventConsumerRegistration> configure)
{
return builder.AddConsumer<TriggerPeriodicTaskEventConsumer>(configure);
return builder.AddConsumer<TriggerPeriodicTaskEvent, TriggerPeriodicTaskEventConsumer>(configure);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Tingle.EventBus" Version="0.21.2" />
<PackageReference Include="Tingle.EventBus" Version="0.22.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Tingle.EventBus.Transports.InMemory" Version="0.21.2" />
<PackageReference Include="Tingle.EventBus.Transports.InMemory" Version="0.22.0" />
</ItemGroup>

<ItemGroup>
Expand Down