File tree 2 files changed +41
-0
lines changed
data/topic-schema/src/main
resources/net/corda/schema
2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,11 @@ private Flow() {
105
105
public static final String FLOW_MAPPER_EVENT_DLQ_TOPIC = getDLQTopic (FLOW_MAPPER_EVENT_TOPIC );
106
106
public static final String FLOW_MAPPER_CLEANUP_TOPIC = "flow.mapper.cleanup" ;
107
107
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" ;
108
113
}
109
114
110
115
/**
Original file line number Diff line number Diff line change @@ -94,3 +94,39 @@ topics:
94
94
producers :
95
95
- flow
96
96
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
+
You can’t perform that action at this time.
0 commit comments