temporalio-client 0.6.0

Clients for interacting with Temporal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
//! Interceptors for high-level client operations.

use crate::{
    ActivityHeartbeatResponse, ActivityIdentifier, WorkflowCancelOptions, WorkflowCountOptions,
    WorkflowDescribeOptions, WorkflowFetchHistoryOptions, WorkflowQueryOptions,
    WorkflowSignalOptions, WorkflowStartError, WorkflowStartOptions, WorkflowStartUpdateOptions,
    WorkflowTerminateOptions,
    errors::{
        AsyncActivityError, ClientError, WorkflowInteractionError, WorkflowQueryError,
        WorkflowUpdateError,
    },
    schedules::{
        CreateScheduleOptions, ScheduleBackfill, ScheduleError, ScheduleOverlapPolicy,
        ScheduleUpdate,
    },
};
use futures_util::future::BoxFuture;
use std::{any::Any, sync::Arc};
use temporalio_common::{
    data_converters::{
        GenericPayloadConverter, PayloadConversionError, SerializationContext, TemporalSerializable,
    },
    protos::temporal::api::{
        common::v1::Payload,
        history::v1::HistoryEvent,
        schedule::v1::ScheduleListEntry,
        update::v1::Outcome,
        workflow::v1::WorkflowExecutionInfo,
        workflowservice::v1::{
            CountWorkflowExecutionsResponse, DescribeScheduleResponse,
            DescribeWorkflowExecutionResponse, QueryWorkflowResponse,
        },
    },
};

mod temporal_client_value {
    use super::*;

    pub trait Sealed {
        fn serialize_client_payloads(
            &self,
            context: &SerializationContext<'_>,
        ) -> Result<Vec<Payload>, PayloadConversionError>;
    }

    impl<T> Sealed for T
    where
        T: Any + TemporalSerializable + Send,
    {
        fn serialize_client_payloads(
            &self,
            context: &SerializationContext<'_>,
        ) -> Result<Vec<Payload>, PayloadConversionError> {
            context.converter.to_payloads(context, self)
        }
    }
}

/// Type-erased input carried through the client interceptor chain.
pub trait TemporalClientValue: Any + Send + temporal_client_value::Sealed {
    /// Access this value as [`Any`] for type-specific inspection.
    fn as_any(&self) -> &dyn Any;

    /// Access this value as mutable [`Any`] for type-specific mutation.
    fn as_any_mut(&mut self) -> &mut dyn Any;
}

impl<T> TemporalClientValue for T
where
    T: Any + TemporalSerializable + Send,
{
    fn as_any(&self) -> &dyn Any {
        self
    }

    fn as_any_mut(&mut self) -> &mut dyn Any {
        self
    }
}

impl dyn TemporalClientValue {
    pub(crate) fn serialize_payloads(
        &self,
        context: &SerializationContext<'_>,
    ) -> Result<Vec<Payload>, PayloadConversionError> {
        temporal_client_value::Sealed::serialize_client_payloads(self, context)
    }
}

/// Provides access to the arguments carried by a client interceptor input.
pub trait HasArgs {
    /// Attempt to access the arguments as a concrete type.
    fn args_ref<T: Any>(&self) -> Option<&T>;

    /// Attempt to mutably access the arguments as a concrete type.
    fn args_mut<T: Any>(&mut self) -> Option<&mut T>;

    /// Replace the arguments with another serializable value.
    fn replace_args<T>(&mut self, args: T)
    where
        T: TemporalSerializable + Send + 'static;
}

macro_rules! impl_with_args {
    ($input:ty) => {
        impl HasArgs for $input {
            fn args_ref<T: Any>(&self) -> Option<&T> {
                self.args.as_any().downcast_ref()
            }

            fn args_mut<T: Any>(&mut self) -> Option<&mut T> {
                self.args.as_any_mut().downcast_mut()
            }

            fn replace_args<T>(&mut self, args: T)
            where
                T: TemporalSerializable + Send + 'static,
            {
                self.args = Box::new(args);
            }
        }
    };
}

/// Continuation for an intercepted client operation.
///
/// A continuation can be invoked at most once because [`run`](Self::run) consumes it.
pub struct Next<'a, I, O> {
    inner: Box<dyn FnOnce(I) -> O + Send + 'a>,
}

impl<'a, I, O> Next<'a, I, O> {
    pub(crate) fn new(f: impl FnOnce(I) -> O + Send + 'a) -> Self {
        Self { inner: Box::new(f) }
    }

    /// Continue the interceptor chain with the provided input.
    pub fn run(self, input: I) -> O {
        (self.inner)(input)
    }
}

/// Input to [`ClientInterceptor::start_workflow`].
#[non_exhaustive]
#[derive(derive_more::Debug)]
pub struct StartWorkflowInput {
    /// The workflow type sent to the server.
    pub workflow_type: String,
    /// Options for the workflow start.
    pub options: WorkflowStartOptions,
    /// Controls for the start RPC.
    pub rpc_options: crate::RpcOptions,
    #[debug(skip)]
    args: Box<dyn TemporalClientValue>,
}

impl StartWorkflowInput {
    pub(crate) fn new<T>(workflow_type: String, args: T, mut options: WorkflowStartOptions) -> Self
    where
        T: TemporalSerializable + Send + 'static,
    {
        let rpc_options = std::mem::take(&mut options.rpc_options);
        Self {
            workflow_type,
            options,
            rpc_options,
            args: Box::new(args),
        }
    }

    pub(crate) fn into_parts(
        self,
    ) -> (
        String,
        Box<dyn TemporalClientValue>,
        WorkflowStartOptions,
        crate::RpcOptions,
    ) {
        (
            self.workflow_type,
            self.args,
            self.options,
            self.rpc_options,
        )
    }
}

impl_with_args!(StartWorkflowInput);

/// Result of a successful intercepted workflow start.
#[non_exhaustive]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct StartWorkflowOutput {
    /// The workflow ID used by the start operation.
    pub workflow_id: String,
    /// The run ID returned by the service or a short-circuiting interceptor.
    pub run_id: String,
}

impl StartWorkflowOutput {
    pub(crate) fn new(workflow_id: impl Into<String>, run_id: impl Into<String>) -> Self {
        Self {
            workflow_id: workflow_id.into(),
            run_id: run_id.into(),
        }
    }
}

/// Input to [`ClientInterceptor::list_workflows_page`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct ListWorkflowsPageInput {
    /// Visibility query used to select workflows.
    pub query: String,
    /// Token identifying the page to retrieve, or empty for the first page.
    pub next_page_token: Vec<u8>,
    /// Controls for this page RPC.
    pub rpc_options: crate::RpcOptions,
}

/// Result of one intercepted workflow-list page.
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct ListWorkflowsPageOutput {
    /// Workflow executions returned by the service.
    pub executions: Vec<WorkflowExecutionInfo>,
    /// Token identifying the next page, or empty when no pages remain.
    pub next_page_token: Vec<u8>,
}

impl ListWorkflowsPageOutput {
    pub(crate) fn new(executions: Vec<WorkflowExecutionInfo>, next_page_token: Vec<u8>) -> Self {
        Self {
            executions,
            next_page_token,
        }
    }
}

/// Input to [`ClientInterceptor::count_workflows`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct CountWorkflowsInput {
    /// Visibility query used to count workflows.
    pub query: String,
    /// Count options, including per-call RPC controls.
    pub options: WorkflowCountOptions,
}

/// Result of an intercepted workflow count.
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct CountWorkflowsOutput {
    /// Raw service response used to assemble the high-level count result.
    pub response: CountWorkflowExecutionsResponse,
}

impl CountWorkflowsOutput {
    pub(crate) fn new(response: CountWorkflowExecutionsResponse) -> Self {
        Self { response }
    }
}

/// Input to [`ClientInterceptor::describe_workflow`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct DescribeWorkflowInput {
    /// Workflow ID to describe.
    pub workflow_id: String,
    /// Run ID to describe, or empty for the latest run.
    pub run_id: String,
    /// Describe options, including per-call RPC controls.
    pub options: WorkflowDescribeOptions,
}

/// Result of an intercepted workflow describe.
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct DescribeWorkflowOutput {
    /// Raw service response decoded after interceptor dispatch.
    pub response: DescribeWorkflowExecutionResponse,
}

impl DescribeWorkflowOutput {
    pub(crate) fn new(response: DescribeWorkflowExecutionResponse) -> Self {
        Self { response }
    }
}

/// Input to [`ClientInterceptor::fetch_workflow_history_page`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct FetchWorkflowHistoryPageInput {
    /// Workflow ID whose history is being retrieved.
    pub workflow_id: String,
    /// Run ID whose history is being retrieved.
    pub run_id: String,
    /// Token identifying the page to retrieve, or empty for the first page.
    pub next_page_token: Vec<u8>,
    /// History options, including per-page RPC controls.
    pub options: WorkflowFetchHistoryOptions,
}

/// Result of one intercepted workflow-history page.
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct FetchWorkflowHistoryPageOutput {
    /// History events returned on this page.
    pub events: Vec<HistoryEvent>,
    /// Token identifying the next page, or empty when no pages remain.
    pub next_page_token: Vec<u8>,
}

impl FetchWorkflowHistoryPageOutput {
    pub(crate) fn new(events: Vec<HistoryEvent>, next_page_token: Vec<u8>) -> Self {
        Self {
            events,
            next_page_token,
        }
    }
}

/// Input to [`ClientInterceptor::signal_workflow`].
#[non_exhaustive]
#[derive(derive_more::Debug)]
pub struct SignalWorkflowInput {
    /// Workflow ID to signal.
    pub workflow_id: String,
    /// Run ID to signal, or empty for the latest run.
    pub run_id: String,
    /// Signal name sent to the workflow.
    pub signal_name: String,
    /// Signal options, including per-call RPC controls.
    pub options: WorkflowSignalOptions,
    #[debug(skip)]
    args: Box<dyn TemporalClientValue>,
}

impl SignalWorkflowInput {
    pub(crate) fn new<T>(
        workflow_id: String,
        run_id: String,
        signal_name: String,
        args: T,
        options: WorkflowSignalOptions,
    ) -> Self
    where
        T: TemporalSerializable + Send + 'static,
    {
        Self {
            workflow_id,
            run_id,
            signal_name,
            options,
            args: Box::new(args),
        }
    }

    pub(crate) fn into_parts(
        self,
    ) -> (
        String,
        String,
        String,
        Box<dyn TemporalClientValue>,
        WorkflowSignalOptions,
    ) {
        (
            self.workflow_id,
            self.run_id,
            self.signal_name,
            self.args,
            self.options,
        )
    }
}

impl_with_args!(SignalWorkflowInput);

/// Input to [`ClientInterceptor::query_workflow`].
#[non_exhaustive]
#[derive(derive_more::Debug)]
pub struct QueryWorkflowInput {
    /// Workflow ID to query.
    pub workflow_id: String,
    /// Run ID to query, or empty for the latest run.
    pub run_id: String,
    /// Query name sent to the workflow.
    pub query_name: String,
    /// Query options, including per-call RPC controls.
    pub options: WorkflowQueryOptions,
    #[debug(skip)]
    args: Box<dyn TemporalClientValue>,
}

impl QueryWorkflowInput {
    pub(crate) fn new<T>(
        workflow_id: String,
        run_id: String,
        query_name: String,
        args: T,
        options: WorkflowQueryOptions,
    ) -> Self
    where
        T: TemporalSerializable + Send + 'static,
    {
        Self {
            workflow_id,
            run_id,
            query_name,
            options,
            args: Box::new(args),
        }
    }

    pub(crate) fn into_parts(
        self,
    ) -> (
        String,
        String,
        String,
        Box<dyn TemporalClientValue>,
        WorkflowQueryOptions,
    ) {
        (
            self.workflow_id,
            self.run_id,
            self.query_name,
            self.args,
            self.options,
        )
    }
}

impl_with_args!(QueryWorkflowInput);

/// Result of an intercepted workflow query before typed result conversion.
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct QueryWorkflowOutput {
    /// Raw service response decoded after interceptor dispatch.
    pub response: QueryWorkflowResponse,
}

impl QueryWorkflowOutput {
    pub(crate) fn new(response: QueryWorkflowResponse) -> Self {
        Self { response }
    }
}

/// Input to [`ClientInterceptor::start_workflow_update`].
#[non_exhaustive]
#[derive(derive_more::Debug)]
pub struct StartWorkflowUpdateInput {
    /// Workflow ID to update.
    pub workflow_id: String,
    /// Run ID to update, or empty for the latest run.
    pub run_id: String,
    /// Update name sent to the workflow.
    pub update_name: String,
    /// Update options, including per-call RPC controls.
    pub options: WorkflowStartUpdateOptions,
    #[debug(skip)]
    args: Box<dyn TemporalClientValue>,
}

impl StartWorkflowUpdateInput {
    pub(crate) fn new<T>(
        workflow_id: String,
        run_id: String,
        update_name: String,
        args: T,
        options: WorkflowStartUpdateOptions,
    ) -> Self
    where
        T: TemporalSerializable + Send + 'static,
    {
        Self {
            workflow_id,
            run_id,
            update_name,
            options,
            args: Box::new(args),
        }
    }

    pub(crate) fn into_parts(
        self,
    ) -> (
        String,
        String,
        String,
        Box<dyn TemporalClientValue>,
        WorkflowStartUpdateOptions,
    ) {
        (
            self.workflow_id,
            self.run_id,
            self.update_name,
            self.args,
            self.options,
        )
    }
}

impl_with_args!(StartWorkflowUpdateInput);

/// Result of an intercepted workflow-update start.
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct StartWorkflowUpdateOutput {
    /// Update ID used by the operation.
    pub update_id: String,
    /// Workflow ID associated with the update.
    pub workflow_id: String,
    /// Run ID returned by the service, when available.
    pub run_id: Option<String>,
    /// Outcome returned when the requested wait stage completed the update.
    pub known_outcome: Option<Outcome>,
}

impl StartWorkflowUpdateOutput {
    pub(crate) fn new(
        update_id: impl Into<String>,
        workflow_id: impl Into<String>,
        run_id: Option<String>,
        known_outcome: Option<Outcome>,
    ) -> Self {
        Self {
            update_id: update_id.into(),
            workflow_id: workflow_id.into(),
            run_id,
            known_outcome,
        }
    }
}

/// Input to [`ClientInterceptor::poll_workflow_update`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct PollWorkflowUpdateInput {
    /// Update ID being polled.
    pub update_id: String,
    /// Workflow ID associated with the update.
    pub workflow_id: String,
    /// Run ID associated with the update, or empty for the latest run.
    pub run_id: String,
    /// Controls for every RPC in the polling loop.
    pub rpc_options: crate::RpcOptions,
}

/// Result of an intercepted workflow-update poll.
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct PollWorkflowUpdateOutput {
    /// Completed update outcome.
    pub outcome: Outcome,
}

impl PollWorkflowUpdateOutput {
    pub(crate) fn new(outcome: Outcome) -> Self {
        Self { outcome }
    }
}

/// Input to [`ClientInterceptor::cancel_workflow`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct CancelWorkflowInput {
    /// Workflow ID to cancel.
    pub workflow_id: String,
    /// Run ID to cancel, or empty for the latest run.
    pub run_id: String,
    /// First execution run ID used to constrain the cancellation.
    pub first_execution_run_id: String,
    /// Cancellation options, including per-call RPC controls.
    pub options: WorkflowCancelOptions,
}

/// Input to [`ClientInterceptor::terminate_workflow`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct TerminateWorkflowInput {
    /// Workflow ID to terminate.
    pub workflow_id: String,
    /// Run ID to terminate, or empty for the latest run.
    pub run_id: String,
    /// First execution run ID used to constrain the termination.
    pub first_execution_run_id: String,
    /// Termination options, including per-call RPC controls.
    pub options: WorkflowTerminateOptions,
}

/// Input to [`ClientInterceptor::create_schedule`].
#[non_exhaustive]
#[derive(Debug)]
pub struct CreateScheduleInput {
    /// Schedule ID to create.
    pub schedule_id: String,
    /// Schedule definition and per-call RPC controls.
    pub options: CreateScheduleOptions,
}

/// Result of an intercepted schedule create.
#[non_exhaustive]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct CreateScheduleOutput {
    /// Schedule ID associated with the created handle.
    pub schedule_id: String,
}

impl CreateScheduleOutput {
    pub(crate) fn new(schedule_id: impl Into<String>) -> Self {
        Self {
            schedule_id: schedule_id.into(),
        }
    }
}

/// Input to [`ClientInterceptor::list_schedules_page`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct ListSchedulesPageInput {
    /// Maximum number of results requested from the service.
    pub maximum_page_size: i32,
    /// Visibility query used to select schedules.
    pub query: String,
    /// Token identifying the page to retrieve, or empty for the first page.
    pub next_page_token: Vec<u8>,
    /// Controls for this page RPC.
    pub rpc_options: crate::RpcOptions,
}

/// Result of one intercepted schedule-list page.
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct ListSchedulesPageOutput {
    /// Schedule entries returned by the service.
    pub schedules: Vec<ScheduleListEntry>,
    /// Token identifying the next page, or empty when no pages remain.
    pub next_page_token: Vec<u8>,
}

impl ListSchedulesPageOutput {
    pub(crate) fn new(schedules: Vec<ScheduleListEntry>, next_page_token: Vec<u8>) -> Self {
        Self {
            schedules,
            next_page_token,
        }
    }
}

/// Input to [`ClientInterceptor::describe_schedule`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct DescribeScheduleInput {
    /// Schedule ID to describe.
    pub schedule_id: String,
    /// Controls for the describe RPC.
    pub rpc_options: crate::RpcOptions,
}

/// Result of an intercepted schedule describe.
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct DescribeScheduleOutput {
    /// Raw service response decoded after interceptor dispatch.
    pub response: DescribeScheduleResponse,
}

impl DescribeScheduleOutput {
    pub(crate) fn new(response: DescribeScheduleResponse) -> Self {
        Self { response }
    }
}

/// Input to [`ClientInterceptor::update_schedule`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct UpdateScheduleInput {
    /// Schedule ID to update.
    pub schedule_id: String,
    /// Controls shared by the describe and update RPCs.
    pub rpc_options: crate::RpcOptions,
}

/// Input to [`ClientInterceptor::send_schedule_update`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct SendScheduleUpdateInput {
    /// Schedule ID to update.
    pub schedule_id: String,
    /// Pre-built schedule update.
    pub update: ScheduleUpdate,
    /// Controls for the update RPC.
    pub rpc_options: crate::RpcOptions,
}

/// Input to [`ClientInterceptor::delete_schedule`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct DeleteScheduleInput {
    /// Schedule ID to delete.
    pub schedule_id: String,
    /// Controls for the delete RPC.
    pub rpc_options: crate::RpcOptions,
}

/// Input to [`ClientInterceptor::pause_schedule`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct PauseScheduleInput {
    /// Schedule ID to pause.
    pub schedule_id: String,
    /// Note attached to the pause operation.
    pub note: String,
    /// Controls for the patch RPC.
    pub rpc_options: crate::RpcOptions,
}

/// Input to [`ClientInterceptor::unpause_schedule`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct UnpauseScheduleInput {
    /// Schedule ID to unpause.
    pub schedule_id: String,
    /// Note attached to the unpause operation.
    pub note: String,
    /// Controls for the patch RPC.
    pub rpc_options: crate::RpcOptions,
}

/// Input to [`ClientInterceptor::trigger_schedule`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct TriggerScheduleInput {
    /// Schedule ID to trigger.
    pub schedule_id: String,
    /// Overlap policy for the immediate action.
    pub overlap_policy: ScheduleOverlapPolicy,
    /// Controls for the patch RPC.
    pub rpc_options: crate::RpcOptions,
}

/// Input to [`ClientInterceptor::backfill_schedule`].
#[non_exhaustive]
#[derive(Clone, Debug)]
pub struct BackfillScheduleInput {
    /// Schedule ID to backfill.
    pub schedule_id: String,
    /// Backfill ranges requested by the caller.
    pub backfills: Vec<ScheduleBackfill>,
    /// Controls for the patch RPC.
    pub rpc_options: crate::RpcOptions,
}

/// Input to [`ClientInterceptor::complete_async_activity`].
#[non_exhaustive]
#[derive(derive_more::Debug)]
pub struct CompleteAsyncActivityInput {
    /// Activity being completed.
    pub identifier: ActivityIdentifier,
    #[debug(skip)]
    result: Option<Box<dyn TemporalClientValue>>,
    /// Controls for the completion RPC.
    pub rpc_options: crate::RpcOptions,
}

impl CompleteAsyncActivityInput {
    pub(crate) fn new<T>(
        identifier: ActivityIdentifier,
        result: Option<T>,
        rpc_options: crate::RpcOptions,
    ) -> Self
    where
        T: TemporalSerializable + Send + 'static,
    {
        Self {
            identifier,
            result: result.map(|value| Box::new(value) as Box<dyn TemporalClientValue>),
            rpc_options,
        }
    }

    pub(crate) fn into_parts(
        self,
    ) -> (
        ActivityIdentifier,
        Option<Box<dyn TemporalClientValue>>,
        crate::RpcOptions,
    ) {
        (self.identifier, self.result, self.rpc_options)
    }

    /// Attempt to access the activity result as a concrete type.
    pub fn result_ref<T: Any>(&self) -> Option<&T> {
        self.result
            .as_ref()
            .and_then(|result| result.as_any().downcast_ref())
    }

    /// Attempt to mutably access the activity result as a concrete type.
    pub fn result_mut<T: Any>(&mut self) -> Option<&mut T> {
        self.result
            .as_mut()
            .and_then(|result| result.as_any_mut().downcast_mut())
    }

    /// Replace or clear the activity result.
    pub fn replace_result<T>(&mut self, result: Option<T>)
    where
        T: TemporalSerializable + Send + 'static,
    {
        self.result = result.map(|value| Box::new(value) as Box<dyn TemporalClientValue>);
    }
}

/// Input to [`ClientInterceptor::fail_async_activity`].
#[non_exhaustive]
#[derive(derive_more::Debug)]
pub struct FailAsyncActivityInput {
    /// Activity being failed.
    pub identifier: ActivityIdentifier,
    /// Application failure reported for the activity.
    pub failure: temporalio_common::error::ApplicationFailure,
    #[debug(skip)]
    last_heartbeat_details: Option<Box<dyn TemporalClientValue>>,
    /// Controls for the failure RPC.
    pub rpc_options: crate::RpcOptions,
}

impl FailAsyncActivityInput {
    pub(crate) fn new<T>(
        identifier: ActivityIdentifier,
        failure: temporalio_common::error::ApplicationFailure,
        last_heartbeat_details: Option<T>,
        rpc_options: crate::RpcOptions,
    ) -> Self
    where
        T: TemporalSerializable + Send + 'static,
    {
        Self {
            identifier,
            failure,
            last_heartbeat_details: last_heartbeat_details
                .map(|value| Box::new(value) as Box<dyn TemporalClientValue>),
            rpc_options,
        }
    }

    pub(crate) fn into_parts(
        self,
    ) -> (
        ActivityIdentifier,
        temporalio_common::error::ApplicationFailure,
        Option<Box<dyn TemporalClientValue>>,
        crate::RpcOptions,
    ) {
        (
            self.identifier,
            self.failure,
            self.last_heartbeat_details,
            self.rpc_options,
        )
    }

    /// Attempt to access the last heartbeat details as a concrete type.
    pub fn last_heartbeat_details_ref<T: Any>(&self) -> Option<&T> {
        self.last_heartbeat_details
            .as_ref()
            .and_then(|details| details.as_any().downcast_ref())
    }

    /// Attempt to mutably access the last heartbeat details as a concrete type.
    pub fn last_heartbeat_details_mut<T: Any>(&mut self) -> Option<&mut T> {
        self.last_heartbeat_details
            .as_mut()
            .and_then(|details| details.as_any_mut().downcast_mut())
    }

    /// Replace or clear the last heartbeat details.
    pub fn replace_last_heartbeat_details<T>(&mut self, details: Option<T>)
    where
        T: TemporalSerializable + Send + 'static,
    {
        self.last_heartbeat_details =
            details.map(|value| Box::new(value) as Box<dyn TemporalClientValue>);
    }
}

/// Input to [`ClientInterceptor::report_async_activity_cancellation`].
#[non_exhaustive]
#[derive(derive_more::Debug)]
pub struct ReportAsyncActivityCancellationInput {
    /// Activity being reported as cancelled.
    pub identifier: ActivityIdentifier,
    #[debug(skip)]
    details: Option<Box<dyn TemporalClientValue>>,
    /// Controls for the cancellation RPC.
    pub rpc_options: crate::RpcOptions,
}

impl ReportAsyncActivityCancellationInput {
    pub(crate) fn new<T>(
        identifier: ActivityIdentifier,
        details: Option<T>,
        rpc_options: crate::RpcOptions,
    ) -> Self
    where
        T: TemporalSerializable + Send + 'static,
    {
        Self {
            identifier,
            details: details.map(|value| Box::new(value) as Box<dyn TemporalClientValue>),
            rpc_options,
        }
    }

    pub(crate) fn into_parts(
        self,
    ) -> (
        ActivityIdentifier,
        Option<Box<dyn TemporalClientValue>>,
        crate::RpcOptions,
    ) {
        (self.identifier, self.details, self.rpc_options)
    }

    /// Attempt to access the cancellation details as a concrete type.
    pub fn details_ref<T: Any>(&self) -> Option<&T> {
        self.details
            .as_ref()
            .and_then(|details| details.as_any().downcast_ref())
    }

    /// Attempt to mutably access the cancellation details as a concrete type.
    pub fn details_mut<T: Any>(&mut self) -> Option<&mut T> {
        self.details
            .as_mut()
            .and_then(|details| details.as_any_mut().downcast_mut())
    }

    /// Replace or clear the cancellation details.
    pub fn replace_details<T>(&mut self, details: Option<T>)
    where
        T: TemporalSerializable + Send + 'static,
    {
        self.details = details.map(|value| Box::new(value) as Box<dyn TemporalClientValue>);
    }
}

/// Input to [`ClientInterceptor::heartbeat_async_activity`].
#[non_exhaustive]
#[derive(derive_more::Debug)]
pub struct HeartbeatAsyncActivityInput {
    /// Activity being heartbeated.
    pub identifier: ActivityIdentifier,
    #[debug(skip)]
    details: Option<Box<dyn TemporalClientValue>>,
    /// Controls for the heartbeat RPC.
    pub rpc_options: crate::RpcOptions,
}

impl HeartbeatAsyncActivityInput {
    pub(crate) fn new<T>(
        identifier: ActivityIdentifier,
        details: Option<T>,
        rpc_options: crate::RpcOptions,
    ) -> Self
    where
        T: TemporalSerializable + Send + 'static,
    {
        Self {
            identifier,
            details: details.map(|value| Box::new(value) as Box<dyn TemporalClientValue>),
            rpc_options,
        }
    }

    pub(crate) fn into_parts(
        self,
    ) -> (
        ActivityIdentifier,
        Option<Box<dyn TemporalClientValue>>,
        crate::RpcOptions,
    ) {
        (self.identifier, self.details, self.rpc_options)
    }

    /// Attempt to access the heartbeat details as a concrete type.
    pub fn details_ref<T: Any>(&self) -> Option<&T> {
        self.details
            .as_ref()
            .and_then(|details| details.as_any().downcast_ref())
    }

    /// Attempt to mutably access the heartbeat details as a concrete type.
    pub fn details_mut<T: Any>(&mut self) -> Option<&mut T> {
        self.details
            .as_mut()
            .and_then(|details| details.as_any_mut().downcast_mut())
    }

    /// Replace or clear the heartbeat details.
    pub fn replace_details<T>(&mut self, details: Option<T>)
    where
        T: TemporalSerializable + Send + 'static,
    {
        self.details = details.map(|value| Box::new(value) as Box<dyn TemporalClientValue>);
    }
}

/// Intercepts high-level client operations.
///
/// The first interceptor configured on a client is the outermost interceptor. An interceptor can
/// do asynchronous work before and after calling `next`, mutate or replace typed input, or return
/// without calling `next` to short-circuit the operation.
///
/// ```
/// use futures_util::future::BoxFuture;
/// use std::{sync::Arc, time::Duration};
/// use temporalio_client::{
///     ClientInterceptor, ClientOptions, Next, StartWorkflowInput, StartWorkflowOutput,
///     errors::WorkflowStartError,
/// };
///
/// struct StartTimeout;
///
/// impl ClientInterceptor for StartTimeout {
///     fn start_workflow<'a>(
///         &'a self,
///         mut input: StartWorkflowInput,
///         next: Next<
///             'a,
///             StartWorkflowInput,
///             BoxFuture<'a, Result<StartWorkflowOutput, WorkflowStartError>>,
///         >,
///     ) -> BoxFuture<'a, Result<StartWorkflowOutput, WorkflowStartError>> {
///         Box::pin(async move {
///             input.rpc_options.timeout = Some(Duration::from_secs(10));
///             let output = next.run(input).await?;
///             Ok(output)
///         })
///     }
/// }
///
/// let _options = ClientOptions::new("my-namespace")
///     .client_interceptors(vec![Arc::new(StartTimeout)])
///     .build();
/// ```
pub trait ClientInterceptor: Send + Sync + 'static {
    /// Intercept a `start_workflow` operation.
    fn start_workflow<'a>(
        &'a self,
        input: StartWorkflowInput,
        next: Next<
            'a,
            StartWorkflowInput,
            BoxFuture<'a, Result<StartWorkflowOutput, WorkflowStartError>>,
        >,
    ) -> BoxFuture<'a, Result<StartWorkflowOutput, WorkflowStartError>> {
        next.run(input)
    }

    /// Intercept a `list_workflows_page` operation.
    fn list_workflows_page<'a>(
        &'a self,
        input: ListWorkflowsPageInput,
        next: Next<
            'a,
            ListWorkflowsPageInput,
            BoxFuture<'a, Result<ListWorkflowsPageOutput, ClientError>>,
        >,
    ) -> BoxFuture<'a, Result<ListWorkflowsPageOutput, ClientError>> {
        next.run(input)
    }

    /// Intercept a `count_workflows` operation.
    fn count_workflows<'a>(
        &'a self,
        input: CountWorkflowsInput,
        next: Next<
            'a,
            CountWorkflowsInput,
            BoxFuture<'a, Result<CountWorkflowsOutput, ClientError>>,
        >,
    ) -> BoxFuture<'a, Result<CountWorkflowsOutput, ClientError>> {
        next.run(input)
    }

    /// Intercept a `describe_workflow` operation.
    fn describe_workflow<'a>(
        &'a self,
        input: DescribeWorkflowInput,
        next: Next<
            'a,
            DescribeWorkflowInput,
            BoxFuture<'a, Result<DescribeWorkflowOutput, WorkflowInteractionError>>,
        >,
    ) -> BoxFuture<'a, Result<DescribeWorkflowOutput, WorkflowInteractionError>> {
        next.run(input)
    }

    /// Intercept a `fetch_workflow_history_page` operation.
    fn fetch_workflow_history_page<'a>(
        &'a self,
        input: FetchWorkflowHistoryPageInput,
        next: Next<
            'a,
            FetchWorkflowHistoryPageInput,
            BoxFuture<'a, Result<FetchWorkflowHistoryPageOutput, WorkflowInteractionError>>,
        >,
    ) -> BoxFuture<'a, Result<FetchWorkflowHistoryPageOutput, WorkflowInteractionError>> {
        next.run(input)
    }

    /// Intercept a `signal_workflow` operation.
    fn signal_workflow<'a>(
        &'a self,
        input: SignalWorkflowInput,
        next: Next<'a, SignalWorkflowInput, BoxFuture<'a, Result<(), WorkflowInteractionError>>>,
    ) -> BoxFuture<'a, Result<(), WorkflowInteractionError>> {
        next.run(input)
    }

    /// Intercept a `query_workflow` operation.
    fn query_workflow<'a>(
        &'a self,
        input: QueryWorkflowInput,
        next: Next<
            'a,
            QueryWorkflowInput,
            BoxFuture<'a, Result<QueryWorkflowOutput, WorkflowQueryError>>,
        >,
    ) -> BoxFuture<'a, Result<QueryWorkflowOutput, WorkflowQueryError>> {
        next.run(input)
    }

    /// Intercept a `start_workflow_update` operation.
    fn start_workflow_update<'a>(
        &'a self,
        input: StartWorkflowUpdateInput,
        next: Next<
            'a,
            StartWorkflowUpdateInput,
            BoxFuture<'a, Result<StartWorkflowUpdateOutput, WorkflowUpdateError>>,
        >,
    ) -> BoxFuture<'a, Result<StartWorkflowUpdateOutput, WorkflowUpdateError>> {
        next.run(input)
    }

    /// Intercept a `poll_workflow_update` operation.
    fn poll_workflow_update<'a>(
        &'a self,
        input: PollWorkflowUpdateInput,
        next: Next<
            'a,
            PollWorkflowUpdateInput,
            BoxFuture<'a, Result<PollWorkflowUpdateOutput, WorkflowUpdateError>>,
        >,
    ) -> BoxFuture<'a, Result<PollWorkflowUpdateOutput, WorkflowUpdateError>> {
        next.run(input)
    }

    /// Intercept a `cancel_workflow` operation.
    fn cancel_workflow<'a>(
        &'a self,
        input: CancelWorkflowInput,
        next: Next<'a, CancelWorkflowInput, BoxFuture<'a, Result<(), WorkflowInteractionError>>>,
    ) -> BoxFuture<'a, Result<(), WorkflowInteractionError>> {
        next.run(input)
    }

    /// Intercept a `terminate_workflow` operation.
    fn terminate_workflow<'a>(
        &'a self,
        input: TerminateWorkflowInput,
        next: Next<'a, TerminateWorkflowInput, BoxFuture<'a, Result<(), WorkflowInteractionError>>>,
    ) -> BoxFuture<'a, Result<(), WorkflowInteractionError>> {
        next.run(input)
    }

    /// Intercept a `create_schedule` operation.
    fn create_schedule<'a>(
        &'a self,
        input: CreateScheduleInput,
        next: Next<
            'a,
            CreateScheduleInput,
            BoxFuture<'a, Result<CreateScheduleOutput, ScheduleError>>,
        >,
    ) -> BoxFuture<'a, Result<CreateScheduleOutput, ScheduleError>> {
        next.run(input)
    }

    /// Intercept a `list_schedules_page` operation.
    fn list_schedules_page<'a>(
        &'a self,
        input: ListSchedulesPageInput,
        next: Next<
            'a,
            ListSchedulesPageInput,
            BoxFuture<'a, Result<ListSchedulesPageOutput, ScheduleError>>,
        >,
    ) -> BoxFuture<'a, Result<ListSchedulesPageOutput, ScheduleError>> {
        next.run(input)
    }

    /// Intercept a `describe_schedule` operation.
    fn describe_schedule<'a>(
        &'a self,
        input: DescribeScheduleInput,
        next: Next<
            'a,
            DescribeScheduleInput,
            BoxFuture<'a, Result<DescribeScheduleOutput, ScheduleError>>,
        >,
    ) -> BoxFuture<'a, Result<DescribeScheduleOutput, ScheduleError>> {
        next.run(input)
    }

    /// Intercept an `update_schedule` operation.
    fn update_schedule<'a>(
        &'a self,
        input: UpdateScheduleInput,
        next: Next<'a, UpdateScheduleInput, BoxFuture<'a, Result<(), ScheduleError>>>,
    ) -> BoxFuture<'a, Result<(), ScheduleError>> {
        next.run(input)
    }

    /// Intercept a `send_schedule_update` operation.
    fn send_schedule_update<'a>(
        &'a self,
        input: SendScheduleUpdateInput,
        next: Next<'a, SendScheduleUpdateInput, BoxFuture<'a, Result<(), ScheduleError>>>,
    ) -> BoxFuture<'a, Result<(), ScheduleError>> {
        next.run(input)
    }

    /// Intercept a `delete_schedule` operation.
    fn delete_schedule<'a>(
        &'a self,
        input: DeleteScheduleInput,
        next: Next<'a, DeleteScheduleInput, BoxFuture<'a, Result<(), ScheduleError>>>,
    ) -> BoxFuture<'a, Result<(), ScheduleError>> {
        next.run(input)
    }

    /// Intercept a `pause_schedule` operation.
    fn pause_schedule<'a>(
        &'a self,
        input: PauseScheduleInput,
        next: Next<'a, PauseScheduleInput, BoxFuture<'a, Result<(), ScheduleError>>>,
    ) -> BoxFuture<'a, Result<(), ScheduleError>> {
        next.run(input)
    }

    /// Intercept an `unpause_schedule` operation.
    fn unpause_schedule<'a>(
        &'a self,
        input: UnpauseScheduleInput,
        next: Next<'a, UnpauseScheduleInput, BoxFuture<'a, Result<(), ScheduleError>>>,
    ) -> BoxFuture<'a, Result<(), ScheduleError>> {
        next.run(input)
    }

    /// Intercept a `trigger_schedule` operation.
    fn trigger_schedule<'a>(
        &'a self,
        input: TriggerScheduleInput,
        next: Next<'a, TriggerScheduleInput, BoxFuture<'a, Result<(), ScheduleError>>>,
    ) -> BoxFuture<'a, Result<(), ScheduleError>> {
        next.run(input)
    }

    /// Intercept a `backfill_schedule` operation.
    fn backfill_schedule<'a>(
        &'a self,
        input: BackfillScheduleInput,
        next: Next<'a, BackfillScheduleInput, BoxFuture<'a, Result<(), ScheduleError>>>,
    ) -> BoxFuture<'a, Result<(), ScheduleError>> {
        next.run(input)
    }

    /// Intercept a `complete_async_activity` operation.
    fn complete_async_activity<'a>(
        &'a self,
        input: CompleteAsyncActivityInput,
        next: Next<'a, CompleteAsyncActivityInput, BoxFuture<'a, Result<(), AsyncActivityError>>>,
    ) -> BoxFuture<'a, Result<(), AsyncActivityError>> {
        next.run(input)
    }

    /// Intercept a `fail_async_activity` operation.
    fn fail_async_activity<'a>(
        &'a self,
        input: FailAsyncActivityInput,
        next: Next<'a, FailAsyncActivityInput, BoxFuture<'a, Result<(), AsyncActivityError>>>,
    ) -> BoxFuture<'a, Result<(), AsyncActivityError>> {
        next.run(input)
    }

    /// Intercept a `report_async_activity_cancellation` operation.
    fn report_async_activity_cancellation<'a>(
        &'a self,
        input: ReportAsyncActivityCancellationInput,
        next: Next<
            'a,
            ReportAsyncActivityCancellationInput,
            BoxFuture<'a, Result<(), AsyncActivityError>>,
        >,
    ) -> BoxFuture<'a, Result<(), AsyncActivityError>> {
        next.run(input)
    }

    /// Intercept a `heartbeat_async_activity` operation.
    fn heartbeat_async_activity<'a>(
        &'a self,
        input: HeartbeatAsyncActivityInput,
        next: Next<
            'a,
            HeartbeatAsyncActivityInput,
            BoxFuture<'a, Result<ActivityHeartbeatResponse, AsyncActivityError>>,
        >,
    ) -> BoxFuture<'a, Result<ActivityHeartbeatResponse, AsyncActivityError>> {
        next.run(input)
    }
}

macro_rules! interceptor_chain {
    ($fn_name:ident, $method:ident, $input:ty, $output:ty) => {
        pub(crate) fn $fn_name<'a>(
            interceptors: &'a [Arc<dyn ClientInterceptor>],
            input: $input,
            terminal: Next<'a, $input, $output>,
        ) -> $output {
            if let Some((interceptor, remaining)) = interceptors.split_first() {
                let next = Next::new(move |input| $fn_name(remaining, input, terminal));
                interceptor.$method(input, next)
            } else {
                terminal.run(input)
            }
        }
    };
}

interceptor_chain!(
    call_start_workflow,
    start_workflow,
    StartWorkflowInput,
    BoxFuture<'a, Result<StartWorkflowOutput, WorkflowStartError>>
);

interceptor_chain!(
    call_list_workflows_page,
    list_workflows_page,
    ListWorkflowsPageInput,
    BoxFuture<'a, Result<ListWorkflowsPageOutput, ClientError>>
);

interceptor_chain!(
    call_count_workflows,
    count_workflows,
    CountWorkflowsInput,
    BoxFuture<'a, Result<CountWorkflowsOutput, ClientError>>
);

interceptor_chain!(
    call_describe_workflow,
    describe_workflow,
    DescribeWorkflowInput,
    BoxFuture<'a, Result<DescribeWorkflowOutput, WorkflowInteractionError>>
);

interceptor_chain!(
    call_fetch_workflow_history_page,
    fetch_workflow_history_page,
    FetchWorkflowHistoryPageInput,
    BoxFuture<'a, Result<FetchWorkflowHistoryPageOutput, WorkflowInteractionError>>
);

interceptor_chain!(
    call_signal_workflow,
    signal_workflow,
    SignalWorkflowInput,
    BoxFuture<'a, Result<(), WorkflowInteractionError>>
);

interceptor_chain!(
    call_query_workflow,
    query_workflow,
    QueryWorkflowInput,
    BoxFuture<'a, Result<QueryWorkflowOutput, WorkflowQueryError>>
);

interceptor_chain!(
    call_start_workflow_update,
    start_workflow_update,
    StartWorkflowUpdateInput,
    BoxFuture<'a, Result<StartWorkflowUpdateOutput, WorkflowUpdateError>>
);

interceptor_chain!(
    call_poll_workflow_update,
    poll_workflow_update,
    PollWorkflowUpdateInput,
    BoxFuture<'a, Result<PollWorkflowUpdateOutput, WorkflowUpdateError>>
);

interceptor_chain!(
    call_cancel_workflow,
    cancel_workflow,
    CancelWorkflowInput,
    BoxFuture<'a, Result<(), WorkflowInteractionError>>
);

interceptor_chain!(
    call_terminate_workflow,
    terminate_workflow,
    TerminateWorkflowInput,
    BoxFuture<'a, Result<(), WorkflowInteractionError>>
);

interceptor_chain!(
    call_create_schedule,
    create_schedule,
    CreateScheduleInput,
    BoxFuture<'a, Result<CreateScheduleOutput, ScheduleError>>
);

interceptor_chain!(
    call_list_schedules_page,
    list_schedules_page,
    ListSchedulesPageInput,
    BoxFuture<'a, Result<ListSchedulesPageOutput, ScheduleError>>
);

interceptor_chain!(
    call_describe_schedule,
    describe_schedule,
    DescribeScheduleInput,
    BoxFuture<'a, Result<DescribeScheduleOutput, ScheduleError>>
);

interceptor_chain!(
    call_update_schedule,
    update_schedule,
    UpdateScheduleInput,
    BoxFuture<'a, Result<(), ScheduleError>>
);

interceptor_chain!(
    call_send_schedule_update,
    send_schedule_update,
    SendScheduleUpdateInput,
    BoxFuture<'a, Result<(), ScheduleError>>
);

interceptor_chain!(
    call_delete_schedule,
    delete_schedule,
    DeleteScheduleInput,
    BoxFuture<'a, Result<(), ScheduleError>>
);

interceptor_chain!(
    call_pause_schedule,
    pause_schedule,
    PauseScheduleInput,
    BoxFuture<'a, Result<(), ScheduleError>>
);

interceptor_chain!(
    call_unpause_schedule,
    unpause_schedule,
    UnpauseScheduleInput,
    BoxFuture<'a, Result<(), ScheduleError>>
);

interceptor_chain!(
    call_trigger_schedule,
    trigger_schedule,
    TriggerScheduleInput,
    BoxFuture<'a, Result<(), ScheduleError>>
);

interceptor_chain!(
    call_backfill_schedule,
    backfill_schedule,
    BackfillScheduleInput,
    BoxFuture<'a, Result<(), ScheduleError>>
);

interceptor_chain!(
    call_complete_async_activity,
    complete_async_activity,
    CompleteAsyncActivityInput,
    BoxFuture<'a, Result<(), AsyncActivityError>>
);

interceptor_chain!(
    call_fail_async_activity,
    fail_async_activity,
    FailAsyncActivityInput,
    BoxFuture<'a, Result<(), AsyncActivityError>>
);

interceptor_chain!(
    call_report_async_activity_cancellation,
    report_async_activity_cancellation,
    ReportAsyncActivityCancellationInput,
    BoxFuture<'a, Result<(), AsyncActivityError>>
);

interceptor_chain!(
    call_heartbeat_async_activity,
    heartbeat_async_activity,
    HeartbeatAsyncActivityInput,
    BoxFuture<'a, Result<ActivityHeartbeatResponse, AsyncActivityError>>
);