Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/en/docs/concepts/function_io.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ spec:
value: "false"
```

[Here](https://github.com/OpenFunction/samples/tree/main/functions/async/pubsub/subscriber) is another async function example that use a Kafka Pub/sub component as input.
[Here](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/pubsub/subscriber) is another async function example that use a Kafka Pub/sub component as input.

```yaml
apiVersion: core.openfunction.io/v1beta1
Expand Down Expand Up @@ -94,7 +94,7 @@ spec:
value: "autoscaling-subscriber"
```

Sync functions can also send output to Dapr output binding components or Pub/sub components, [here](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding) is an example:
Sync functions can also send output to Dapr output binding components or Pub/sub components, [here](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/with-output-binding) is an example:

```yaml
apiVersion: core.openfunction.io/v1beta1
Expand Down
10 changes: 5 additions & 5 deletions content/en/docs/concepts/function_signatures.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ As you can see, `OpenFunction` signature is the recommended function signature,

| | HTTP | CloudEvent | OpenFunction |
|-----------|----------------|----------------------|------------------------|
| Go | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-go), [Multi-functions](https://github.com/OpenFunction/samples/tree/main/functions/knative/multiple-functions-go), [log processing](https://github.com/OpenFunction/samples/blob/main/functions/knative/logs-handler-function/LogsHandler.go) | | [Sync function with output binding](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding), [Kafka input & HTTP output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/logs-handler-function), [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/cron-input-kafka-output), [Cron input binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/cron-input), [Kafka input binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/kafka-input), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/pubsub) |
| Nodejs | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-node) | | [Sync function with output binding](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding-node), [MQTT binding & pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/mqtt-io-node) |
| Python | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-python) | | |
| Java | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-java) | | |
| DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-dotnet) | | |
| Go | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-go), [log processing](https://github.com/OpenFunction/samples/blob/main/functions/knative/logs-handler-function/LogsHandler.go) | | [Sync function with output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/with-output-binding), [Kafka input & HTTP output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/logs-handler-function), [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/cron-input-kafka-output), [Cron input binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/cron-input), [Kafka input binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/kafka-input), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/pubsub) |
| Nodejs | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-node) | | |
| Python | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-python) | | |
| Java | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-java) | | |
| DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-dotnet) | | |
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Async functions are event-driven and their inputs are usually events from Non-HT

| | Async Functions |
|-----------|-----------------|
| Go | [Kafka input & HTTP output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/logs-handler-function), [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/cron-input-kafka-output), [Cron input binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/cron-input), [Kafka input binding](https://github.com/OpenFunction/samples/tree/main/functions/async/bindings/kafka-input), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/pubsub) |
| Nodejs | [MQTT binding & pubsub](https://github.com/OpenFunction/samples/tree/main/functions/async/mqtt-io-node) |
| Go | [Kafka input & HTTP output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/logs-handler-function), [Cron input & Kafka output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/cron-input-kafka-output), [Cron input binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/cron-input), [Kafka input binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/bindings/kafka-input), [Kafka pubsub](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/pubsub) |
| Nodejs | [MQTT binding & pubsub](https://github.com/OpenFunction/samples/tree/release-0.6/functions/async/mqtt-io-node) |
| Python | |
| Java | |
| DotNet | |
Expand Down
10 changes: 5 additions & 5 deletions content/en/docs/getting-started/Quickstarts/sync-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ Sync functions are funtions whose inputs are payloads of HTTP requests, and the

| | Sync Functions |
|-----------|----------------|
| Go | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-go), [Multi-functions](https://github.com/OpenFunction/samples/tree/main/functions/knative/multiple-functions-go), [log processing](https://github.com/OpenFunction/samples/blob/main/functions/knative/logs-handler-function/LogsHandler.go), [Sync function with output binding](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding) |
| Nodejs | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-node), [Sync function with output binding](https://github.com/OpenFunction/samples/tree/main/functions/knative/with-output-binding-node) |
| Python | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-python) |
| Java | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-java) |
| DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/main/functions/knative/hello-world-dotnet) |
| Go | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-go), [Multi-functions](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/multiple-functions-go), [log processing](https://github.com/OpenFunction/samples/blob/main/functions/knative/logs-handler-function/LogsHandler.go), [Sync function with output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/with-output-binding) |
| Nodejs | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-node), [Sync function with output binding](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/with-output-binding-node) |
| Python | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-python) |
| Java | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-java) |
| DotNet | [Hello World](https://github.com/OpenFunction/samples/tree/release-0.6/functions/knative/hello-world-dotnet) |

> You can find more function samples [here](../../../concepts/function_signatures/#samples)