@hla4ts/proto 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +237 -0
- package/package.json +33 -0
- package/src/generated/FederateAmbassador.ts +7443 -0
- package/src/generated/RTIambassador.ts +32788 -0
- package/src/generated/datatypes.ts +4212 -0
- package/src/index.ts +450 -0
package/src/index.ts
ADDED
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @hla4ts/proto - HLA 4 Federate Protocol TypeScript Types
|
|
3
|
+
*
|
|
4
|
+
* Generated from the official IEEE 1516.1-2025 Federate Protocol .proto definitions.
|
|
5
|
+
*
|
|
6
|
+
* This package provides:
|
|
7
|
+
* - Type-safe interfaces for all HLA 4 protocol messages
|
|
8
|
+
* - Encode/decode functions for protobuf serialization
|
|
9
|
+
* - Enums for protocol constants (ResignAction, OrderType, etc.)
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```ts
|
|
13
|
+
* import {
|
|
14
|
+
* JoinFederationExecutionRequest,
|
|
15
|
+
* CallRequest,
|
|
16
|
+
* ResignAction,
|
|
17
|
+
* } from '@hla4ts/proto';
|
|
18
|
+
*
|
|
19
|
+
* const request: JoinFederationExecutionRequest = {
|
|
20
|
+
* federateName: 'MyFederate',
|
|
21
|
+
* federateType: 'TypeA',
|
|
22
|
+
* federationName: 'TestFederation',
|
|
23
|
+
* };
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* @packageDocumentation
|
|
27
|
+
*/
|
|
28
|
+
|
|
29
|
+
// =============================================================================
|
|
30
|
+
// Core Data Types
|
|
31
|
+
// =============================================================================
|
|
32
|
+
export {
|
|
33
|
+
// Enums
|
|
34
|
+
AdditionalSettingsResultCode,
|
|
35
|
+
CallbackModel,
|
|
36
|
+
ResignAction,
|
|
37
|
+
SynchronizationPointFailureReason,
|
|
38
|
+
SaveFailureReason,
|
|
39
|
+
RestoreFailureReason,
|
|
40
|
+
SaveStatus,
|
|
41
|
+
RestoreStatus,
|
|
42
|
+
OrderType,
|
|
43
|
+
ServiceGroup,
|
|
44
|
+
|
|
45
|
+
// Configuration & Credentials
|
|
46
|
+
type RtiConfiguration,
|
|
47
|
+
type ConfigurationResult,
|
|
48
|
+
type Credentials,
|
|
49
|
+
|
|
50
|
+
// Exception
|
|
51
|
+
type ExceptionData,
|
|
52
|
+
|
|
53
|
+
// Handles (opaque byte arrays)
|
|
54
|
+
type FederateHandle,
|
|
55
|
+
type ObjectClassHandle,
|
|
56
|
+
type AttributeHandle,
|
|
57
|
+
type InteractionClassHandle,
|
|
58
|
+
type ParameterHandle,
|
|
59
|
+
type ObjectInstanceHandle,
|
|
60
|
+
type MessageRetractionHandle,
|
|
61
|
+
type LogicalTime,
|
|
62
|
+
type LogicalTimeInterval,
|
|
63
|
+
type TransportationTypeHandle,
|
|
64
|
+
type DimensionHandle,
|
|
65
|
+
type RegionHandle,
|
|
66
|
+
|
|
67
|
+
// Handle Sets
|
|
68
|
+
type FederateHandleSet,
|
|
69
|
+
type AttributeHandleSet,
|
|
70
|
+
type DimensionHandleSet,
|
|
71
|
+
type RegionHandleSet,
|
|
72
|
+
type InteractionClassHandleSet,
|
|
73
|
+
|
|
74
|
+
// Handle-Value Maps
|
|
75
|
+
type AttributeHandleValue,
|
|
76
|
+
type AttributeHandleValueMap,
|
|
77
|
+
type ParameterHandleValue,
|
|
78
|
+
type ParameterHandleValueMap,
|
|
79
|
+
|
|
80
|
+
// Federation Info
|
|
81
|
+
type FederationExecutionInformation,
|
|
82
|
+
type FederationExecutionInformationSet,
|
|
83
|
+
type FederationExecutionMemberInformation,
|
|
84
|
+
type FederationExecutionMemberInformationSet,
|
|
85
|
+
type JoinResult,
|
|
86
|
+
|
|
87
|
+
// Save/Restore
|
|
88
|
+
type FederateRestoreStatus,
|
|
89
|
+
type FederateRestoreStatusArray,
|
|
90
|
+
type FederateHandleSaveStatusPair,
|
|
91
|
+
type FederateHandleSaveStatusPairArray,
|
|
92
|
+
|
|
93
|
+
// Time
|
|
94
|
+
type TimeQueryReturn,
|
|
95
|
+
type MessageRetractionReturn,
|
|
96
|
+
|
|
97
|
+
// DDM (Data Distribution Management)
|
|
98
|
+
type RangeBounds,
|
|
99
|
+
type DimensionAndRange,
|
|
100
|
+
type ConveyedRegion,
|
|
101
|
+
type ConveyedRegionSet,
|
|
102
|
+
type AttributeSetRegionSetPair,
|
|
103
|
+
type AttributeSetRegionSetPairList,
|
|
104
|
+
|
|
105
|
+
// Supplemental Info
|
|
106
|
+
type SupplementalReflectInfo,
|
|
107
|
+
type SupplementalReceiveInfo,
|
|
108
|
+
|
|
109
|
+
// FOM Modules
|
|
110
|
+
type FomModule,
|
|
111
|
+
type FileFomModule,
|
|
112
|
+
type FomModuleSet,
|
|
113
|
+
} from "./generated/datatypes.ts";
|
|
114
|
+
|
|
115
|
+
// =============================================================================
|
|
116
|
+
// RTI Ambassador (Federate → RTI) Messages
|
|
117
|
+
// =============================================================================
|
|
118
|
+
export {
|
|
119
|
+
// Main envelope types
|
|
120
|
+
type CallRequest,
|
|
121
|
+
type CallResponse,
|
|
122
|
+
|
|
123
|
+
// Federation Management
|
|
124
|
+
type CreateFederationExecutionRequest,
|
|
125
|
+
type CreateFederationExecutionResponse,
|
|
126
|
+
type CreateFederationExecutionWithTimeRequest,
|
|
127
|
+
type CreateFederationExecutionWithTimeResponse,
|
|
128
|
+
type CreateFederationExecutionWithModulesRequest,
|
|
129
|
+
type CreateFederationExecutionWithModulesResponse,
|
|
130
|
+
type CreateFederationExecutionWithModulesAndTimeRequest,
|
|
131
|
+
type CreateFederationExecutionWithModulesAndTimeResponse,
|
|
132
|
+
type CreateFederationExecutionWithMIMRequest,
|
|
133
|
+
type CreateFederationExecutionWithMIMResponse,
|
|
134
|
+
type CreateFederationExecutionWithMIMAndTimeRequest,
|
|
135
|
+
type CreateFederationExecutionWithMIMAndTimeResponse,
|
|
136
|
+
type DestroyFederationExecutionRequest,
|
|
137
|
+
type DestroyFederationExecutionResponse,
|
|
138
|
+
type ListFederationExecutionsRequest,
|
|
139
|
+
type ListFederationExecutionsResponse,
|
|
140
|
+
type ListFederationExecutionMembersRequest,
|
|
141
|
+
type ListFederationExecutionMembersResponse,
|
|
142
|
+
type JoinFederationExecutionRequest,
|
|
143
|
+
type JoinFederationExecutionResponse,
|
|
144
|
+
type JoinFederationExecutionWithModulesRequest,
|
|
145
|
+
type JoinFederationExecutionWithModulesResponse,
|
|
146
|
+
type JoinFederationExecutionWithNameRequest,
|
|
147
|
+
type JoinFederationExecutionWithNameResponse,
|
|
148
|
+
type JoinFederationExecutionWithNameAndModulesRequest,
|
|
149
|
+
type JoinFederationExecutionWithNameAndModulesResponse,
|
|
150
|
+
type ResignFederationExecutionRequest,
|
|
151
|
+
type ResignFederationExecutionResponse,
|
|
152
|
+
|
|
153
|
+
// Synchronization
|
|
154
|
+
type RegisterFederationSynchronizationPointRequest,
|
|
155
|
+
type RegisterFederationSynchronizationPointResponse,
|
|
156
|
+
type RegisterFederationSynchronizationPointWithSetRequest,
|
|
157
|
+
type RegisterFederationSynchronizationPointWithSetResponse,
|
|
158
|
+
type SynchronizationPointAchievedRequest,
|
|
159
|
+
type SynchronizationPointAchievedResponse,
|
|
160
|
+
|
|
161
|
+
// Save/Restore
|
|
162
|
+
type RequestFederationSaveRequest,
|
|
163
|
+
type RequestFederationSaveResponse,
|
|
164
|
+
type RequestFederationSaveWithTimeRequest,
|
|
165
|
+
type RequestFederationSaveWithTimeResponse,
|
|
166
|
+
type FederateSaveBegunRequest,
|
|
167
|
+
type FederateSaveBegunResponse,
|
|
168
|
+
type FederateSaveCompleteRequest,
|
|
169
|
+
type FederateSaveCompleteResponse,
|
|
170
|
+
type FederateSaveNotCompleteRequest,
|
|
171
|
+
type FederateSaveNotCompleteResponse,
|
|
172
|
+
type AbortFederationSaveRequest,
|
|
173
|
+
type AbortFederationSaveResponse,
|
|
174
|
+
type QueryFederationSaveStatusRequest,
|
|
175
|
+
type QueryFederationSaveStatusResponse,
|
|
176
|
+
type RequestFederationRestoreRequest,
|
|
177
|
+
type RequestFederationRestoreResponse,
|
|
178
|
+
type FederateRestoreCompleteRequest,
|
|
179
|
+
type FederateRestoreCompleteResponse,
|
|
180
|
+
type FederateRestoreNotCompleteRequest,
|
|
181
|
+
type FederateRestoreNotCompleteResponse,
|
|
182
|
+
type AbortFederationRestoreRequest,
|
|
183
|
+
type AbortFederationRestoreResponse,
|
|
184
|
+
type QueryFederationRestoreStatusRequest,
|
|
185
|
+
type QueryFederationRestoreStatusResponse,
|
|
186
|
+
|
|
187
|
+
// Declaration Management
|
|
188
|
+
type PublishObjectClassAttributesRequest,
|
|
189
|
+
type PublishObjectClassAttributesResponse,
|
|
190
|
+
type UnpublishObjectClassRequest,
|
|
191
|
+
type UnpublishObjectClassResponse,
|
|
192
|
+
type UnpublishObjectClassAttributesRequest,
|
|
193
|
+
type UnpublishObjectClassAttributesResponse,
|
|
194
|
+
type PublishInteractionClassRequest,
|
|
195
|
+
type PublishInteractionClassResponse,
|
|
196
|
+
type UnpublishInteractionClassRequest,
|
|
197
|
+
type UnpublishInteractionClassResponse,
|
|
198
|
+
type SubscribeObjectClassAttributesRequest,
|
|
199
|
+
type SubscribeObjectClassAttributesResponse,
|
|
200
|
+
type SubscribeObjectClassAttributesWithRateRequest,
|
|
201
|
+
type SubscribeObjectClassAttributesWithRateResponse,
|
|
202
|
+
type SubscribeObjectClassAttributesPassivelyRequest,
|
|
203
|
+
type SubscribeObjectClassAttributesPassivelyResponse,
|
|
204
|
+
type UnsubscribeObjectClassRequest,
|
|
205
|
+
type UnsubscribeObjectClassResponse,
|
|
206
|
+
type UnsubscribeObjectClassAttributesRequest,
|
|
207
|
+
type UnsubscribeObjectClassAttributesResponse,
|
|
208
|
+
type SubscribeInteractionClassRequest,
|
|
209
|
+
type SubscribeInteractionClassResponse,
|
|
210
|
+
type SubscribeInteractionClassPassivelyRequest,
|
|
211
|
+
type SubscribeInteractionClassPassivelyResponse,
|
|
212
|
+
type UnsubscribeInteractionClassRequest,
|
|
213
|
+
type UnsubscribeInteractionClassResponse,
|
|
214
|
+
|
|
215
|
+
// Object Management
|
|
216
|
+
type ReserveObjectInstanceNameRequest,
|
|
217
|
+
type ReserveObjectInstanceNameResponse,
|
|
218
|
+
type ReleaseObjectInstanceNameRequest,
|
|
219
|
+
type ReleaseObjectInstanceNameResponse,
|
|
220
|
+
type RegisterObjectInstanceRequest,
|
|
221
|
+
type RegisterObjectInstanceResponse,
|
|
222
|
+
type RegisterObjectInstanceWithNameRequest,
|
|
223
|
+
type RegisterObjectInstanceWithNameResponse,
|
|
224
|
+
type UpdateAttributeValuesRequest,
|
|
225
|
+
type UpdateAttributeValuesResponse,
|
|
226
|
+
type UpdateAttributeValuesWithTimeRequest,
|
|
227
|
+
type UpdateAttributeValuesWithTimeResponse,
|
|
228
|
+
type SendInteractionRequest,
|
|
229
|
+
type SendInteractionResponse,
|
|
230
|
+
type SendInteractionWithTimeRequest,
|
|
231
|
+
type SendInteractionWithTimeResponse,
|
|
232
|
+
type SendDirectedInteractionRequest,
|
|
233
|
+
type SendDirectedInteractionResponse,
|
|
234
|
+
type SendDirectedInteractionWithTimeRequest,
|
|
235
|
+
type SendDirectedInteractionWithTimeResponse,
|
|
236
|
+
type DeleteObjectInstanceRequest,
|
|
237
|
+
type DeleteObjectInstanceResponse,
|
|
238
|
+
type DeleteObjectInstanceWithTimeRequest,
|
|
239
|
+
type DeleteObjectInstanceWithTimeResponse,
|
|
240
|
+
type LocalDeleteObjectInstanceRequest,
|
|
241
|
+
type LocalDeleteObjectInstanceResponse,
|
|
242
|
+
type RequestInstanceAttributeValueUpdateRequest,
|
|
243
|
+
type RequestInstanceAttributeValueUpdateResponse,
|
|
244
|
+
type RequestClassAttributeValueUpdateRequest,
|
|
245
|
+
type RequestClassAttributeValueUpdateResponse,
|
|
246
|
+
|
|
247
|
+
// Time Management
|
|
248
|
+
type EnableTimeRegulationRequest,
|
|
249
|
+
type EnableTimeRegulationResponse,
|
|
250
|
+
type DisableTimeRegulationRequest,
|
|
251
|
+
type DisableTimeRegulationResponse,
|
|
252
|
+
type EnableTimeConstrainedRequest,
|
|
253
|
+
type EnableTimeConstrainedResponse,
|
|
254
|
+
type DisableTimeConstrainedRequest,
|
|
255
|
+
type DisableTimeConstrainedResponse,
|
|
256
|
+
type TimeAdvanceRequestRequest,
|
|
257
|
+
type TimeAdvanceRequestResponse,
|
|
258
|
+
type TimeAdvanceRequestAvailableRequest,
|
|
259
|
+
type TimeAdvanceRequestAvailableResponse,
|
|
260
|
+
type NextMessageRequestRequest,
|
|
261
|
+
type NextMessageRequestResponse,
|
|
262
|
+
type NextMessageRequestAvailableRequest,
|
|
263
|
+
type NextMessageRequestAvailableResponse,
|
|
264
|
+
type FlushQueueRequestRequest,
|
|
265
|
+
type FlushQueueRequestResponse,
|
|
266
|
+
type EnableAsynchronousDeliveryRequest,
|
|
267
|
+
type EnableAsynchronousDeliveryResponse,
|
|
268
|
+
type DisableAsynchronousDeliveryRequest,
|
|
269
|
+
type DisableAsynchronousDeliveryResponse,
|
|
270
|
+
type QueryGALTRequest,
|
|
271
|
+
type QueryGALTResponse,
|
|
272
|
+
type QueryLogicalTimeRequest,
|
|
273
|
+
type QueryLogicalTimeResponse,
|
|
274
|
+
type QueryLITSRequest,
|
|
275
|
+
type QueryLITSResponse,
|
|
276
|
+
type ModifyLookaheadRequest,
|
|
277
|
+
type ModifyLookaheadResponse,
|
|
278
|
+
type QueryLookaheadRequest,
|
|
279
|
+
type QueryLookaheadResponse,
|
|
280
|
+
type RetractRequest,
|
|
281
|
+
type RetractResponse,
|
|
282
|
+
|
|
283
|
+
// Ownership Management
|
|
284
|
+
type UnconditionalAttributeOwnershipDivestitureRequest,
|
|
285
|
+
type UnconditionalAttributeOwnershipDivestitureResponse,
|
|
286
|
+
type NegotiatedAttributeOwnershipDivestitureRequest,
|
|
287
|
+
type NegotiatedAttributeOwnershipDivestitureResponse,
|
|
288
|
+
type ConfirmDivestitureRequest,
|
|
289
|
+
type ConfirmDivestitureResponse,
|
|
290
|
+
type AttributeOwnershipAcquisitionRequest,
|
|
291
|
+
type AttributeOwnershipAcquisitionResponse,
|
|
292
|
+
type AttributeOwnershipAcquisitionIfAvailableRequest,
|
|
293
|
+
type AttributeOwnershipAcquisitionIfAvailableResponse,
|
|
294
|
+
type AttributeOwnershipReleaseDeniedRequest,
|
|
295
|
+
type AttributeOwnershipReleaseDeniedResponse,
|
|
296
|
+
type AttributeOwnershipDivestitureIfWantedRequest,
|
|
297
|
+
type AttributeOwnershipDivestitureIfWantedResponse,
|
|
298
|
+
type CancelNegotiatedAttributeOwnershipDivestitureRequest,
|
|
299
|
+
type CancelNegotiatedAttributeOwnershipDivestitureResponse,
|
|
300
|
+
type CancelAttributeOwnershipAcquisitionRequest,
|
|
301
|
+
type CancelAttributeOwnershipAcquisitionResponse,
|
|
302
|
+
type QueryAttributeOwnershipRequest,
|
|
303
|
+
type QueryAttributeOwnershipResponse,
|
|
304
|
+
type IsAttributeOwnedByFederateRequest,
|
|
305
|
+
type IsAttributeOwnedByFederateResponse,
|
|
306
|
+
|
|
307
|
+
// Support Services (Handle/Name lookups)
|
|
308
|
+
type GetFederateHandleRequest,
|
|
309
|
+
type GetFederateHandleResponse,
|
|
310
|
+
type GetFederateNameRequest,
|
|
311
|
+
type GetFederateNameResponse,
|
|
312
|
+
type GetObjectClassHandleRequest,
|
|
313
|
+
type GetObjectClassHandleResponse,
|
|
314
|
+
type GetObjectClassNameRequest,
|
|
315
|
+
type GetObjectClassNameResponse,
|
|
316
|
+
type GetObjectInstanceHandleRequest,
|
|
317
|
+
type GetObjectInstanceHandleResponse,
|
|
318
|
+
type GetObjectInstanceNameRequest,
|
|
319
|
+
type GetObjectInstanceNameResponse,
|
|
320
|
+
type GetAttributeHandleRequest,
|
|
321
|
+
type GetAttributeHandleResponse,
|
|
322
|
+
type GetAttributeNameRequest,
|
|
323
|
+
type GetAttributeNameResponse,
|
|
324
|
+
type GetInteractionClassHandleRequest,
|
|
325
|
+
type GetInteractionClassHandleResponse,
|
|
326
|
+
type GetInteractionClassNameRequest,
|
|
327
|
+
type GetInteractionClassNameResponse,
|
|
328
|
+
type GetParameterHandleRequest,
|
|
329
|
+
type GetParameterHandleResponse,
|
|
330
|
+
type GetParameterNameRequest,
|
|
331
|
+
type GetParameterNameResponse,
|
|
332
|
+
|
|
333
|
+
// Connection
|
|
334
|
+
type ConnectRequest,
|
|
335
|
+
type ConnectResponse,
|
|
336
|
+
type ConnectWithCredentialsRequest,
|
|
337
|
+
type ConnectWithCredentialsResponse,
|
|
338
|
+
type ConnectWithConfigurationRequest,
|
|
339
|
+
type ConnectWithConfigurationResponse,
|
|
340
|
+
type ConnectWithConfigurationAndCredentialsRequest,
|
|
341
|
+
type ConnectWithConfigurationAndCredentialsResponse,
|
|
342
|
+
type DisconnectRequest,
|
|
343
|
+
type DisconnectResponse,
|
|
344
|
+
|
|
345
|
+
// Encoders
|
|
346
|
+
CallRequest as CallRequestCodec,
|
|
347
|
+
CallResponse as CallResponseCodec,
|
|
348
|
+
} from "./generated/RTIambassador.ts";
|
|
349
|
+
|
|
350
|
+
// =============================================================================
|
|
351
|
+
// Federate Ambassador (RTI → Federate) Callbacks
|
|
352
|
+
// =============================================================================
|
|
353
|
+
export {
|
|
354
|
+
// Main envelope types
|
|
355
|
+
type CallbackRequest,
|
|
356
|
+
type CallbackResponse,
|
|
357
|
+
type CallbackSucceeded,
|
|
358
|
+
|
|
359
|
+
// Connection
|
|
360
|
+
type ConnectionLost,
|
|
361
|
+
|
|
362
|
+
// Federation Reports
|
|
363
|
+
type ReportFederationExecutions,
|
|
364
|
+
type ReportFederationExecutionMembers,
|
|
365
|
+
type ReportFederationExecutionDoesNotExist,
|
|
366
|
+
type FederateResigned,
|
|
367
|
+
|
|
368
|
+
// Synchronization
|
|
369
|
+
type SynchronizationPointRegistrationSucceeded,
|
|
370
|
+
type SynchronizationPointRegistrationFailed,
|
|
371
|
+
type AnnounceSynchronizationPoint,
|
|
372
|
+
type FederationSynchronized,
|
|
373
|
+
|
|
374
|
+
// Save/Restore Callbacks
|
|
375
|
+
type InitiateFederateSave,
|
|
376
|
+
type InitiateFederateSaveWithTime,
|
|
377
|
+
type FederationSaved,
|
|
378
|
+
type FederationNotSaved,
|
|
379
|
+
type FederationSaveStatusResponse,
|
|
380
|
+
type RequestFederationRestoreSucceeded,
|
|
381
|
+
type RequestFederationRestoreFailed,
|
|
382
|
+
type FederationRestoreBegun,
|
|
383
|
+
type InitiateFederateRestore,
|
|
384
|
+
type FederationRestored,
|
|
385
|
+
type FederationNotRestored,
|
|
386
|
+
type FederationRestoreStatusResponse,
|
|
387
|
+
|
|
388
|
+
// Declaration Management Advisories
|
|
389
|
+
type StartRegistrationForObjectClass,
|
|
390
|
+
type StopRegistrationForObjectClass,
|
|
391
|
+
type TurnInteractionsOn,
|
|
392
|
+
type TurnInteractionsOff,
|
|
393
|
+
|
|
394
|
+
// Object Name Reservation
|
|
395
|
+
type ObjectInstanceNameReservationSucceeded,
|
|
396
|
+
type ObjectInstanceNameReservationFailed,
|
|
397
|
+
type MultipleObjectInstanceNameReservationSucceeded,
|
|
398
|
+
type MultipleObjectInstanceNameReservationFailed,
|
|
399
|
+
|
|
400
|
+
// Object Discovery & Updates
|
|
401
|
+
type DiscoverObjectInstance,
|
|
402
|
+
type ReflectAttributeValues,
|
|
403
|
+
type ReflectAttributeValuesWithTime,
|
|
404
|
+
type RemoveObjectInstance,
|
|
405
|
+
type RemoveObjectInstanceWithTime,
|
|
406
|
+
|
|
407
|
+
// Interactions
|
|
408
|
+
type ReceiveInteraction,
|
|
409
|
+
type ReceiveInteractionWithTime,
|
|
410
|
+
type ReceiveDirectedInteraction,
|
|
411
|
+
type ReceiveDirectedInteractionWithTime,
|
|
412
|
+
|
|
413
|
+
// Attribute Scope
|
|
414
|
+
type AttributesInScope,
|
|
415
|
+
type AttributesOutOfScope,
|
|
416
|
+
|
|
417
|
+
// Attribute Updates
|
|
418
|
+
type ProvideAttributeValueUpdate,
|
|
419
|
+
type TurnUpdatesOnForObjectInstance,
|
|
420
|
+
type TurnUpdatesOnForObjectInstanceWithRate,
|
|
421
|
+
type TurnUpdatesOffForObjectInstance,
|
|
422
|
+
|
|
423
|
+
// Transportation Type
|
|
424
|
+
type ConfirmAttributeTransportationTypeChange,
|
|
425
|
+
type ReportAttributeTransportationType,
|
|
426
|
+
type ConfirmInteractionTransportationTypeChange,
|
|
427
|
+
type ReportInteractionTransportationType,
|
|
428
|
+
|
|
429
|
+
// Ownership Callbacks
|
|
430
|
+
type RequestAttributeOwnershipAssumption,
|
|
431
|
+
type RequestDivestitureConfirmation,
|
|
432
|
+
type AttributeOwnershipAcquisitionNotification,
|
|
433
|
+
type AttributeOwnershipUnavailable,
|
|
434
|
+
type RequestAttributeOwnershipRelease,
|
|
435
|
+
type ConfirmAttributeOwnershipAcquisitionCancellation,
|
|
436
|
+
type InformAttributeOwnership,
|
|
437
|
+
type AttributeIsNotOwned,
|
|
438
|
+
type AttributeIsOwnedByRTI,
|
|
439
|
+
|
|
440
|
+
// Time Management Callbacks
|
|
441
|
+
type TimeRegulationEnabled,
|
|
442
|
+
type TimeConstrainedEnabled,
|
|
443
|
+
type TimeAdvanceGrant,
|
|
444
|
+
type FlushQueueGrant,
|
|
445
|
+
type RequestRetraction,
|
|
446
|
+
|
|
447
|
+
// Encoders
|
|
448
|
+
CallbackRequest as CallbackRequestCodec,
|
|
449
|
+
CallbackResponse as CallbackResponseCodec,
|
|
450
|
+
} from "./generated/FederateAmbassador.ts";
|