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
Below is a snippet of the gRPC service definition for pluggable component state stores ([state.proto]):
32
34
@@ -95,11 +97,15 @@ Provide a concrete implementation of the desired service. Each component has a g
95
97
96
98
-**Pub/sub**
97
99
98
-
Pluggable pub/sub components only have a single core service interface defined ([pubsub.proto]). They have no optional service interfaces.
100
+
Pluggable pub/sub components only have a single core service interface defined [pubsub.proto](https://github.com/dapr/dapr/blob/master/dapr/proto/components/v1/pubsub.proto). They have no optional service interfaces.
99
101
100
102
-**Bindings**
101
103
102
-
Pluggable input and output bindings have a single core service definition on [bindings.proto]. They have no optional service interfaces.
104
+
Pluggable input and output bindings have a single core service definition on [bindings.proto](https://github.com/dapr/dapr/blob/master/dapr/proto/components/v1/bindings.proto). They have no optional service interfaces.
105
+
106
+
-**Secret Store**
107
+
108
+
Pluggable Secret store have a single core service definition on [secretstore.proto](https://github.com/dapr/dapr/blob/master/dapr/proto/components/v1/secretstore.proto). They have no optional service interfaces.
103
109
104
110
After generating the above state store example's service scaffolding code using gRPC and protocol buffers tools, you can define concrete implementations for the 9 methods defined under `service StateStore`, along with code to initialize and communicate with your dependencies.
Copy file name to clipboardExpand all lines: daprdocs/content/en/developing-applications/develop-components/pluggable-components/pluggable-components-overview.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,3 @@ In contrast, pluggable components require additional steps before they can commu
63
63
64
64
-[Implement a pluggable component]({{< ref develop-pluggable.md >}})
0 commit comments