-
Notifications
You must be signed in to change notification settings - Fork 0
Vehicle Handover Library
Zeeljko edited this page May 31, 2017
·
5 revisions
The VehicleHandoverLibrary offers functionality to transfer vehicles between different Traffic Simulations. For every team there is a designated Amazon SimpleQueueService in the background. Users of the library may push vehicles to their group's queue. Furthermore, users are able to subscribe to other queues for incoming vehicles.
Assembly Version: 1.0.0.0
Changes: Initial Version
From: dschoeninger.itsb‐m2016@fh‐salzburg.ac.at
- Download the VehicleHandoverLibrary.dll and add it as a reference to your project. https://www.dropbox.com/sh/mk5hqay2orn6vex/AADKabqOg_4dlwaI8GEKw3Pta?dl=0
- Add the following NuGet packages to your project
- Newtonsoft.Json (version: 10.0.2)
- AWSSDK.SQS (version: 3.3.2.2)
- Your packages.config should now contain the following dependencies:
- The example code below shows how to use the library.
The library only consists of a Vehicle class, a VehicleType enumeration and a Groups enumeration.
- Namespace: VehicleHandoverLibrary
- Properties:
Namespace: VehicleHandoverLibrary
Enum:
public enum VehicleType { CAR, TRUCK, BIKE };
Namespace: VehicleHandoverLibrary
Enum:
public enum Groups { GROUP01, GROUP02, GROUP03 }