Skip to content

Latest commit

 

History

History
68 lines (52 loc) · 1.42 KB

File metadata and controls

68 lines (52 loc) · 1.42 KB

StowayNet.Extensions.Snowflake

StowayNet.Extensions.Snowflake is an extension of twitter's snowflake algorithm, which can support injection dependencies.

Get Started

NuGet

You can run the following command to install the StowayNet.Extensions.Snowflake in your project.

PM> Install-Package StowayNet.Extensions.Snowflake

Configuration

First,You need to configure StowayNet.Extensions.Snowflake in your Startup.cs:

......
using StowayNet;
......

public void ConfigureServices(IServiceCollection services)
{
    ......

    services.AddStowayNet();

    ......
}

you can aslo configure StowayNet.Extensions.Snowflake.SnowflakeIdOptions in your startup.cs:

public void ConfigureServices(IServiceCollection services)
{
    ......
    services.AddStowayNet();
    services.Configure<StowayNet.Extensions.Snowflake.SnowflakeIdOptions>(options =>
    {
        options.ServerId = serverId;
    });
    ......
}

Sample

    using StowayNet.Extensions.Snowflake;
    
    class TestSample
    {
        private readonly ILogger<TestSample> _logger;
        private readonly ISnowflakeIdWorker _idWorker;

        public TestSample(ILogger<TestSample> logger, ISnowflakeIdWorker idWorker)
        {
            _logger = logger;
            _idWorker = idWorker;
        }

        public void Execute()
        {
            _logger.LogDebug($"newid:{_idWorker.NewId()}");

        }
    }