You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/catalog/SimpleFunctionRegistry.java
Copy file name to clipboardExpand all lines: spring-cloud-function-context/src/main/java/org/springframework/cloud/function/context/config/CloudEventJsonMessageConverter.java
Copy file name to clipboardExpand all lines: spring-cloud-function-context/src/test/java/org/springframework/cloud/function/context/catalog/BeanFactoryAwarePojoFunctionRegistryTests.java
+6-6
Original file line number
Diff line number
Diff line change
@@ -62,11 +62,11 @@ public void testWithPojoFunctionImplementingFunction() {
. . . post a binary-mode message by filling all the required Cloud Events headers and posting `data` element as _payload_ (see the screenshot below).
93
+
94
+
image::images\rabbit-send-binary.png[]
61
95
62
-
Streaming support for Kafka and Rabbit is provided via Spring Cloud Stream framework (link). In fact we're only mentioning Kafka and Rabbit here as an example.
63
-
Streaming support is automatically provided for any existing binders (e.g., Solace, GCP, AWS etc) (link)
64
-
Binders are components of SCSt responsible to bind user code (e.g., function) to broker destinations so execution is triggered
65
-
by messages on broker destination and results of execution are sent to broker destinations. Binders also provide support consumer
66
-
groups and partitioning for both Kafka and RabbitMQ messaging systems.
96
+
. . . post a structured-mode message by filling `contentType` header to the value of `application/cloudevents+json` while providing the
97
+
entire structure of Cloud Event message as _payload_ (see the screenshot below).
Copy file name to clipboardExpand all lines: spring-cloud-function-samples/function-sample-cloudevent/src/test/java/io/spring/cloudevent/CloudeventDemoApplicationRESTTests.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -152,7 +152,7 @@ public void testAsStracturalFormatToPOJO() throws Exception {
0 commit comments