robotdotnet / WPILib

DotNet implementation of WPILib for FIRST Robotics Competition (FRC)
27 stars 8 forks source link

Fix simulator access, and callbacks #49

Closed ThadHouse closed 8 years ago

ThadHouse commented 8 years ago

Currently all functions in the new simulator are public, both write and read. We can make individual parts of this read only to increase thread safety.

In addition, if the code is part of NotifyDataBase, currently every method will check for a notifier on write. We can change this so only the important functions are Notifiable.

ThadHouse commented 8 years ago

Basically done, so closing