CompositeRegionGraphChangeEvent
public enum CompositeRegionGraphChangeEvent : Equatable
Event that indicates that something regarding CompositeRegionGraph
has changed.
Important
This is a Public Preview API. It may be changed or removed at any time.-
Error that prevents the creation of the
CompositeRegionGraph
instance.Declaration
Swift
case error(MapUpdateError)
-
Provides the
CompositeRegionGraph
and the state information.This event is sent first after an observer is registered. Then the event is sent after every change in the
CompositeRegionGraph
.Declaration
Swift
case graphChanged(GraphChangedData)
-
Indicates that some of the
CompositeRegion
have changed states.The data provides only states that have changed since the last time this event was sent.
Declaration
Swift
case statesChanged(CompositeRegionStatesData)
-
Data associated with the
graphChanged(_:)
event.Important
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public struct GraphChangedData : Equatable