Type Alias LockProviderSettingsBase

LockProviderSettingsBase: {
    createOwnerId?: () => string;
    defaultBlockingInterval?: TimeSpan;
    defaultBlockingTime?: TimeSpan;
    defaultRefreshTime?: TimeSpan;
    defaultTtl?: TimeSpan | null;
    eventBus?: IEventBus<any>;
    keyPrefixer: KeyPrefixer;
    lazyPromiseFactory?: Factory<AsyncLazy<any>, LazyPromise<any>>;
    serde: OneOrMore<IFlexibleSerde>;
    serdeTransformerName?: string;
}

IMPORT_PATH: "@daiso-tech/core/lock"

Type declaration

  • OptionalcreateOwnerId?: () => string

    You can pass your owner id generator function.

  • OptionaldefaultBlockingInterval?: TimeSpan

    The default refresh time used in the ILock acquireBlocking and runBlocking methods.

    TimeSpan.fromSeconds(1);
    
  • OptionaldefaultBlockingTime?: TimeSpan

    The default refresh time used in the ILock acquireBlocking and runBlocking methods.

    TimeSpan.fromMinutes(1);
    
  • OptionaldefaultRefreshTime?: TimeSpan

    The default refresh time used in the ILock referesh method.

    TimeSpan.fromMinutes(5);
    
  • OptionaldefaultTtl?: TimeSpan | null

    You can decide the default ttl value for ILock expiration. If null is passed then no ttl will be used by default.

    TimeSpan.fromMinutes(5);
    
  • OptionaleventBus?: IEventBus<any>
    import { EventBus } from "@daiso-tech/core/event-bus";
    import { MemoryEventBusAdapter } from "@daiso-tech/core/event-bus/adapters";
    import { KeyPrefixer } from "@daiso-tech/core/utilities";

    new EventBus({
    keyPrefixer: new KeyPrefixer("event-bus"),
    adapter: new MemoryEventBusAdapter()
    })
  • keyPrefixer: KeyPrefixer
  • OptionallazyPromiseFactory?: Factory<AsyncLazy<any>, LazyPromise<any>>

    You can pass a Factory of LazyPromise to configure default settings for all LazyPromise instances used in the LockProvider class.

    import { LazyPromise } from "@daiso-tech/core/async";

    (invokable) => new LazyPromise(invokable)
  • serde: OneOrMore<IFlexibleSerde>
  • OptionalserdeTransformerName?: string
    {""}