UNPKG

@goparrot/pubsub-event-bus

Version:
9 lines (8 loc) 440 B
import type { IChannelWrapper, IHandlerWrapper } from '../../interface'; import { AutoAckEnum } from '../../interface'; import { AbstractHandleWrapperStrategy } from './AbstractHandleWrapperStrategy'; export declare class ManualStrategy extends AbstractHandleWrapperStrategy { private implementAckAndNack; readonly strategy = AutoAckEnum.NEVER; process(handlerWrapper: IHandlerWrapper, channelWrapper: IChannelWrapper): void; }