Ejemplo n.º 1
0
 static Snowflake()
 {
     for (var i = 0; i < _instances.Length; i++)
     {
         _instances[i] = new SnowflakeInstance(i);
     }
 }
Ejemplo n.º 2
0
        public void In100Years()
        {
            var snowflake = new SnowflakeInstance(null, DateTimeOffset.UtcNow.AddYears(-100));

            Print(snowflake);
        }
Ejemplo n.º 3
0
        public void Month()
        {
            var snowflake = new SnowflakeInstance(null, DateTimeOffset.UtcNow.AddMonths(-1));

            Print(snowflake);
        }
Ejemplo n.º 4
0
        public void LargeEpoch()
        {
            var snowflake = new SnowflakeInstance(null, DateTimeOffset.UtcNow);

            Print(snowflake);
        }
Ejemplo n.º 5
0
        public void SmallEpoch()
        {
            var snowflake = new SnowflakeInstance(null, DateTimeOffset.MinValue);

            Print(snowflake);
        }
Ejemplo n.º 6
0
        public void Generate()
        {
            var snowflake = new SnowflakeInstance();

            Print(snowflake);
        }
Ejemplo n.º 7
0
        public void StressOneInstance()
        {
            var snowflake = new SnowflakeInstance();

            Run(() => snowflake.Timestamp);
        }