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
While SpacetimeDB doesn't support nested transactions,
192
+
a reducer can [schedule another reducer](https://docs.rs/spacetimedb/latest/spacetimedb/attr.reducer.html#scheduled-reducers) to run at an interval,
193
+
or at a specific time.
191
194
:::
192
195
:::server-csharp
193
196
```csharp
@@ -207,19 +210,12 @@ public static void World(ReducerContext ctx)
207
210
// ...
208
211
}
209
212
```
210
-
:::
211
-
212
-
:::server-rust
213
-
While SpacetimeDB doesn't support nested transactions,
214
-
a reducer can [schedule another reducer](https://docs.rs/spacetimedb/latest/spacetimedb/attr.reducer.html#scheduled-reducers) to run at an interval,
215
-
or at a specific time.
216
-
:::
217
-
:::server-csharp
218
213
While SpacetimeDB doesn't support nested transactions,
219
214
a reducer can [schedule another reducer](/docs/modules/c-sharp#scheduled-reducers) to run at an interval,
220
215
or at a specific time.
221
216
:::
222
217
218
+
223
219
### Client
224
220
A **client** is an application that connects to a [database](#database). A client logs in using an [identity](#identity) and receives an [connection id](#connectionid) to identify the connection. After that, it can call [reducers](#reducer) and query public [tables](#table).
0 commit comments