예제 #1
0
        public static async Task <IEventLogStorage?> CreateAsync(
            EventLogStorageOptions options,
            ISystemClock?systemClock = default)
        {
            var result = new EventLogStorage(options, systemClock);
            await result.InitializeAsync();

            return(result);
        }