@@ -393,14 +393,14 @@ impl SpacetimeModule for Module {
393
393
fn handle_table_update (& self , table_update : TableUpdate , client_cache : & mut ClientCache , callbacks : & mut RowCallbackReminders ) {
394
394
let table_name = &table_update.table_name[..];
395
395
match table_name {
396
- "HasSpecialStuff " => client_cache.handle_table_update_no_primary_key::< has_special_stuff ::HasSpecialStuff > (callbacks , table_update ),
397
- "PkMultiIdentity " => client_cache.handle_table_update_with_primary_key::< pk_multi_identity ::PkMultiIdentity > (callbacks , table_update ),
398
- "Point " => client_cache.handle_table_update_no_primary_key::< point ::Point > (callbacks , table_update ),
399
- "Private " => client_cache.handle_table_update_no_primary_key::< private ::Private > (callbacks , table_update ),
400
- "RepeatingTestArg " => client_cache.handle_table_update_with_primary_key::< repeating_test_arg ::RepeatingTestArg > (callbacks , table_update ),
401
- "TestA " => client_cache.handle_table_update_no_primary_key::< test_a ::TestA > (callbacks , table_update ),
402
- "TestD " => client_cache.handle_table_update_no_primary_key::< test_d ::TestD > (callbacks , table_update ),
403
- "TestE " => client_cache.handle_table_update_with_primary_key::< test_e ::TestE > (callbacks , table_update ),
396
+ "has_special_stuff " => client_cache.handle_table_update_no_primary_key::< has_special_stuff ::HasSpecialStuff > (callbacks , table_update ),
397
+ "pk_multi_identity " => client_cache.handle_table_update_with_primary_key::< pk_multi_identity ::PkMultiIdentity > (callbacks , table_update ),
398
+ "points " => client_cache.handle_table_update_no_primary_key::< point ::Point > (callbacks , table_update ),
399
+ "private " => client_cache.handle_table_update_no_primary_key::< private ::Private > (callbacks , table_update ),
400
+ "repeating_test_args " => client_cache.handle_table_update_with_primary_key::< repeating_test_arg ::RepeatingTestArg > (callbacks , table_update ),
401
+ "test_a " => client_cache.handle_table_update_no_primary_key::< test_a ::TestA > (callbacks , table_update ),
402
+ "test_d " => client_cache.handle_table_update_no_primary_key::< test_d ::TestD > (callbacks , table_update ),
403
+ "test_e " => client_cache.handle_table_update_with_primary_key::< test_e ::TestE > (callbacks , table_update ),
404
404
_ => spacetimedb_sdk::log ::error ! (" TableRowOperation on unknown table {:?}" , table_name ),
405
405
}
406
406
}
@@ -431,14 +431,14 @@ match &reducer_call.reducer_name[..] {
431
431
fn handle_resubscribe(& self, new_subs: TableUpdate, client_cache: & mut ClientCache, callbacks: & mut RowCallbackReminders) {
432
432
let table_name = & new_subs .table_name [..];
433
433
match table_name {
434
- "HasSpecialStuff " => client_cache.handle_resubscribe_for_type::< has_special_stuff ::HasSpecialStuff > (callbacks , new_subs ),
435
- "PkMultiIdentity " => client_cache.handle_resubscribe_for_type::< pk_multi_identity ::PkMultiIdentity > (callbacks , new_subs ),
436
- "Point " => client_cache.handle_resubscribe_for_type::< point ::Point > (callbacks , new_subs ),
437
- "Private " => client_cache.handle_resubscribe_for_type::< private ::Private > (callbacks , new_subs ),
438
- "RepeatingTestArg " => client_cache.handle_resubscribe_for_type::< repeating_test_arg ::RepeatingTestArg > (callbacks , new_subs ),
439
- "TestA " => client_cache.handle_resubscribe_for_type::< test_a ::TestA > (callbacks , new_subs ),
440
- "TestD " => client_cache.handle_resubscribe_for_type::< test_d ::TestD > (callbacks , new_subs ),
441
- "TestE " => client_cache.handle_resubscribe_for_type::< test_e ::TestE > (callbacks , new_subs ),
434
+ "has_special_stuff " => client_cache.handle_resubscribe_for_type::< has_special_stuff ::HasSpecialStuff > (callbacks , new_subs ),
435
+ "pk_multi_identity " => client_cache.handle_resubscribe_for_type::< pk_multi_identity ::PkMultiIdentity > (callbacks , new_subs ),
436
+ "points " => client_cache.handle_resubscribe_for_type::< point ::Point > (callbacks , new_subs ),
437
+ "private " => client_cache.handle_resubscribe_for_type::< private ::Private > (callbacks , new_subs ),
438
+ "repeating_test_args " => client_cache.handle_resubscribe_for_type::< repeating_test_arg ::RepeatingTestArg > (callbacks , new_subs ),
439
+ "test_a " => client_cache.handle_resubscribe_for_type::< test_a ::TestA > (callbacks , new_subs ),
440
+ "test_d " => client_cache.handle_resubscribe_for_type::< test_d ::TestD > (callbacks , new_subs ),
441
+ "test_e " => client_cache.handle_resubscribe_for_type::< test_e ::TestE > (callbacks , new_subs ),
442
442
_ => spacetimedb_sdk::log ::error ! (" TableRowOperation on unknown table {:?}" , table_name ),
443
443
}
444
444
}
0 commit comments