Skip to content

Commit 2d5c31d

Browse files
author
Dries Samyn
authored
New topics for Flow Topology changes. (#1280)
1 parent a5ef976 commit 2d5c31d

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

data/topic-schema/src/main/java/net/corda/schema/Schemas.java

+5
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ private Flow() {
105105
public static final String FLOW_MAPPER_EVENT_DLQ_TOPIC = getDLQTopic(FLOW_MAPPER_EVENT_TOPIC);
106106
public static final String FLOW_MAPPER_CLEANUP_TOPIC = "flow.mapper.cleanup";
107107
public static final String FLOW_TIMEOUT_TOPIC = "flow.timeout";
108+
public static final String FLOW_MAPPER_START = "flow.mapper.start";
109+
public static final String FLOW_MAPPER_SESSION_OUT = "flow.mapper.session.out";
110+
public static final String FLOW_MAPPER_SESSION_IN = "flow.mapper.session.in";
111+
public static final String FLOW_START = "flow.start";
112+
public static final String FLOW_SESSION = "flow.session";
108113
}
109114

110115
/**

data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml

+36
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,39 @@ topics:
9494
producers:
9595
- flow
9696
config:
97+
FlowMapperStart:
98+
name: flow.mapper.start
99+
consumers:
100+
- flowMapper
101+
producers:
102+
- rest
103+
config:
104+
FlowMapperSessionOut:
105+
name: flow.mapper.session.out
106+
consumers:
107+
- flowMapper
108+
producers:
109+
- flow
110+
config:
111+
FlowMapperSessionIn:
112+
name: flow.mapper.session.in
113+
consumers:
114+
- flowMapper
115+
producers:
116+
- link-manager
117+
config:
118+
FlowStart:
119+
name: flow.start
120+
consumers:
121+
- flow
122+
producers:
123+
- flowMapper
124+
config:
125+
FlowSession:
126+
name: flow.session
127+
consumers:
128+
- flow
129+
producers:
130+
- flowMapper
131+
config:
132+

0 commit comments

Comments
 (0)