#383 closed enhancement (done)
Methodcalls into the AppDomain should be made async
Reported by: | kgrading | Owned by: | kgrading |
---|---|---|---|
Priority: | medium | Milestone: | HeuristicLab 3.3.0 |
Component: | Hive.Client.Core | Version: | 3.2 |
Keywords: | Cc: |
Description
Change History (7)
comment:1 Changed 16 years ago by kgrading
- Status changed from new to assigned
comment:2 Changed 16 years ago by kgrading
- Type changed from defect to enhancement
comment:3 Changed 16 years ago by kgrading
comment:4 Changed 16 years ago by kgrading
- Resolution set to fixed
- Status changed from assigned to closed
implemented the changes suggested in the last change info in r811. Method calls to GetFinishedJob and GetSnapshot (both methods have to serialize the job first => time consuming) are now synchronous, but are executed in their own threads.
comment:5 Changed 16 years ago by swagner
- Milestone changed from Hive 1.0 to Iteration 0
Milestone Hive 1.0 deleted
comment:6 Changed 14 years ago by swagner
- Milestone changed from Iteration 0 to Current
Milestone Iteration 0 deleted
comment:11 Changed 14 years ago by swagner
- Milestone changed from Current to HeuristicLab 3.3.0
Milestone Current deleted
Note: See
TracTickets for help on using
tickets.
It seems that async method calls (using delegates & Begin + EndInvoke) between AppDomains don't work that well. The result is a memory access exception. In my optinion the better workaround is making the thing synchronous but in seperate threats. Means: One (slow) Method Call uses his own Thread.