Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-debug-dev] Has org.eclipse.debug.core.model to be thread-safe?

The safe answer is that your debug model should be thread safe. For 
example, in 3.0, a the Debug & Variables views will retrieve content and 
labels in a background thread (to avoid blocking the UI). However, this 
means that other views/actions may be accessing/operating on the elements 
at the same time in the UI thread, or that different background jobs could 
be accessing the elements at the same time. If there is a specific case 
you are concerned about, please elaborate.

Darin





Michael Scharf <Michael-Scharf@xxxxxx>
Sent by: platform-debug-dev-admin@xxxxxxxxxxx
01/07/2004 09:38 AM
Please respond to platform-debug-dev
 
        To:     platform-debug-dev@xxxxxxxxxxx
        cc: 
        Subject:        [platform-debug-dev] Has 
org.eclipse.debug.core.model to be thread-safe?


Can implementations of org.eclipse.debug.core.model
thread-save expect to be called only from the one (the UI)
thread or does te implementation have to be thread safe?

Michael
-- 
      ''''\     Michael Scharf
     ` c-@@     Wind River Systems GmbH
     `    >     http://www.WindRiver.com
      \_ V      mailto:Michael.Scharf@xxxxxxxxxxxxx


_______________________________________________
platform-debug-dev mailing list
platform-debug-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/platform-debug-dev




Back to the top