You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 21, 2024. It is now read-only.
Create a new class storing all the packet information.
The class contains methods to update and get the packet information:
Fields:
private LapDataCollectionModel lapDataCollectionModel; private ParticipantCollectionModel participantCollectionModel; private MarshalZoneModel marshalZoneModel; private SessionDataModel sessionDataModel; private WeatherForecastSampleModel weatherForecastSampleModel;update method example:
public void updateLapDataCollection(ByteBuffer byteBuffer) { this.lapDataCollectionModel.readData(byteBuffer); }getter example:
public LapDataCollectionModel getLapDataCollectionModel() {
return this.lapDataCollectionModel;
}
Note: Getters need to be able to handle parallelization.