This sample program does not compile:
public class MyClass
{
public bool do_work () {
message ("OTHER THREAD: %p", (void*)Thread.self ) ;
return false ;
}
public void run () {
Thread<bool> thread1 = new Thread<bool>.try ("queuejobmanager-thread-1", do_work);
thread1.join () ;
}
}
int main (string[] args) {
message ("MAIN THREAD: %p", (void*)Thread.self ) ;
var item = new MyClass () ;
item.run () ;
return 0 ;
}
The error is:
vala-thread.vala:10.36-10.51: error: The name `try' does not exist in the context of `GLib.Thread'
Thread<bool> thread1 = new Thread<bool>.try ("queuejobmanager-thread-1", do_work);
As specified in the sample, you have to build using the option --target-glib 2.32
The complete build line is: