Introduction

This service is implemented by the partner and used as a callback service in the subscribe operations.

 

This is the service that the partner must implement for the airport to "publish" data for the relevant flights. The subscribe operations on FlightDataSubscriptionService get the address to this service in the ServiceUrl parameter. If this service is unavailable for some reason it will typically be handled as an unsubscribe operation.

Operations

FlightDataInboundUpdate

Signature

FlightDataInboundUpdate( flightDataInbound: FlightDataInbound ) : ResponseStatus

Description

Implements a callback operation for the matching subscribe operation. See the data definitions for documentation of parameters and return values.

FlightDataOutboundUpdate

Signature

FlightDataOutboundUpdate( flightDataOutbound: FlightDataOutbound ) : ResponseStatus

Description

See FlightDataInboundUpdate.

FlightLegDataUpdate

Signature

FlightLegDataUpdate( flightLegData: FlightLegData ) : ResponseStatus

Description

See FlightDataInboundUpdate.

TurnaroundDataUpdate

Signature

TurnaroundDataUpdate( turnaroundData: TurnaroundData ) : ResponseStatus

Description

See FlightDataInboundUpdate.

AlertUpdate

Signature

AlertUpdate( alert: Alert ) : ResponseStatus

Description

See FlightDataInboundUpdate.

  • No labels