You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
427 B

import { PluginRegistry } from "../pluginRegistry.js";
PluginRegistry.register('messageQueue', {
type: 'messageQueue',
label: 'Message Queue',
props: [
{ name: 'label', type: 'string', default: 'MQ', group: 'label-group' },
{ name: 'queueCapacity', type: 'number', default: 10000, group: 'mq-group' },
{ name: 'retentionSeconds', type: 'number', default: 600, group: 'mq-group' }
]
});