UNPKG

lemon-engine

Version:

Lemon Engine Module to Synchronize Node over DynamoDB + ElastiCache + Elasticsearch by [lemoncloud](https://lemoncloud.io)

25 lines (24 loc) 742 B
/** * SQS Proxy Service Exports * - proxy call to sqs service. * * * * @author steve@lemoncloud.io * @date 2019-05-23 * @copyright (C) lemoncloud.io 2019 - All Rights Reserved. */ import { EnginePluggable, EnginePluginBuilder } from '../common/types'; export interface SQSProxy extends EnginePluggable { /** * get the current endpoint address. */ endpoint: () => string; do_receiveMessage: (TYPE: any, size: any) => any; do_sendMessage: (TYPE: any, $attr: any, $data: any) => any; do_deleteMessage: (TYPE: any, handle: any) => any; do_statistics: (TYPE: any, handle: any) => any; do_test_self: (options: any) => any; } declare const maker: EnginePluginBuilder<SQSProxy>; export default maker;