Changes between Version 41 and Version 42 of mvc


Ignore:
Timestamp:
11/21/23 13:40:18 (12 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mvc

    v41 v42  
    124124
    125125There are many more examples in [source:/mvc/src/test/java/tudelft/utilities/mvc/panels].
     126
     127== Thread safety, parallel editing
     128MVC2 is not thread safe. If different editors try to modify different components simultaneously, conflicts may arise. Thread safety was not considered in the design because normally GUIs are not multithreaded.
     129However, some issues related to this can still arise. For instance a custom table cell editor may open, and it may stay open until you press enter, if you go editing something else and then later press enter, odd things may happen.