Eip System Management Entities
Channel Purger
- Preview
- Usage
- Definition
import { ChannelPurger } from '@dinghy/diagrams/entitiesEipSystemManagement'
<ChannelPurger/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CHANNEL_PURGER } from '@dinghy/diagrams/entitiesEipSystemManagement'
<Shape
{...props}
_style={extendStyle(props, CHANNEL_PURGER)}
/>
{
_style: {
entity: 'html=1;strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.channel_purger;fillColor=#c0f5a9',
},
_width: 150,
_height: 90,
}
Control Bus
- Preview
- Usage
- Definition
import { ControlBus } from '@dinghy/diagrams/entitiesEipSystemManagement'
<ControlBus/>
// or
import { extendStyle } from "@dinghy/base-components";
import { CONTROL_BUS } from '@dinghy/diagrams/entitiesEipSystemManagement'
<Shape
{...props}
_style={extendStyle(props, CONTROL_BUS)}
/>
{
_style: {
entity: 'html=1;strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.control_bus;fillColor=#c0f5a9',
},
_width: 60,
_height: 40,
}
Detour
- Preview
- Usage
- Definition
import { Detour } from '@dinghy/diagrams/entitiesEipSystemManagement'
<Detour/>
// or
import { extendStyle } from "@dinghy/base-components";
import { DETOUR } from '@dinghy/diagrams/entitiesEipSystemManagement'
<Shape
{...props}
_style={extendStyle(props, DETOUR)}
/>
{
_style: {
entity: 'html=1;strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.detour;fillColor=#c0f5a9',
},
_width: 150,
_height: 90,
}
Message Store
- Preview
- Usage
- Definition
import { MessageStore } from '@dinghy/diagrams/entitiesEipSystemManagement'
<MessageStore/>
// or
import { extendStyle } from "@dinghy/base-components";
import { MESSAGE_STORE } from '@dinghy/diagrams/entitiesEipSystemManagement'
<Shape
{...props}
_style={extendStyle(props, MESSAGE_STORE)}
/>
{
_style: {
entity: 'html=1;strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.message_store;fillColor=#c0f5a9',
},
_width: 150,
_height: 90,
}
Smart Proxy
- Preview
- Usage
- Definition
import { SmartProxy } from '@dinghy/diagrams/entitiesEipSystemManagement'
<SmartProxy/>
// or
import { extendStyle } from "@dinghy/base-components";
import { SMART_PROXY } from '@dinghy/diagrams/entitiesEipSystemManagement'
<Shape
{...props}
_style={extendStyle(props, SMART_PROXY)}
/>
{
_style: {
entity: 'html=1;strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.smart_proxy;fillColor=#c0f5a9',
},
_width: 70,
_height: 90,
}
Test Message
- Preview
- Usage
- Definition
import { TestMessage } from '@dinghy/diagrams/entitiesEipSystemManagement'
<TestMessage/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TEST_MESSAGE } from '@dinghy/diagrams/entitiesEipSystemManagement'
<Shape
{...props}
_style={extendStyle(props, TEST_MESSAGE)}
/>
{
_style: {
entity: 'html=1;strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.test_message;fillColor=#c0f5a9',
},
_width: 150,
_height: 90,
}
Wire Tap
- Preview
- Usage
- Definition
import { WireTap } from '@dinghy/diagrams/entitiesEipSystemManagement'
<WireTap/>
// or
import { extendStyle } from "@dinghy/base-components";
import { WIRE_TAP } from '@dinghy/diagrams/entitiesEipSystemManagement'
<Shape
{...props}
_style={extendStyle(props, WIRE_TAP)}
/>
{
_style: {
entity: 'html=1;strokeWidth=2;outlineConnect=0;dashed=0;align=center;fontSize=8;verticalLabelPosition=bottom;verticalAlign=top;shape=mxgraph.eip.wire_tap;fillColor=#c0f5a9',
},
_width: 150,
_height: 90,
}