🚚 Rename the Stream to Queue in internal code

This commit is contained in:
2025-12-25 19:11:39 +08:00
parent f792d43ab9
commit 0bc77b948c
13 changed files with 14 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
using DysonNetwork.Shared.Models;
using NodaTime;
namespace DysonNetwork.Shared.Stream;
namespace DysonNetwork.Shared.Queue;
public class AccountDeletedEvent
{

View File

@@ -1,4 +1,4 @@
namespace DysonNetwork.Shared.Stream;
namespace DysonNetwork.Shared.Queue;
public class PaymentOrderEvent : PaymentOrderEventBase
{

View File

@@ -1,9 +1,9 @@
using NATS.Client.JetStream;
using NATS.Client.JetStream.Models;
namespace DysonNetwork.Shared.Stream;
namespace DysonNetwork.Shared.Queue;
public static class Streamer
public static class QueueHelper
{
public static async Task<INatsJSStream> EnsureStreamCreated(
this INatsJSContext context,

View File

@@ -1,6 +1,6 @@
using NodaTime;
namespace DysonNetwork.Shared.Stream;
namespace DysonNetwork.Shared.Queue;
public class WebSocketPacketEvent
{