• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Mentor
    Posts: 219
    Registered: ‎03-11-2008

    Access drawing from new thread

    257 Views, 2 Replies
    02-17-2012 12:07 AM

    Hi,

     

    I found out, that you can't read AcApp.DocumentManager.MdiActiveDocument from a new thread, so I was passing the reference to the document to every method that needed to use it

    But then I found out, that HostApplicationServices.WorkingDatabase allows me to access the database from a new thread.

    So I'm wondering, is there any other difference, whether I access the database using AcApp.DocumentManager.MdiActiveDocument.Database or HostApplicationServices.WorkingDatabase ?

     

    And is there some way for thread-sefe access to the active document?

    Please use plain text.
    ADN Support Specialist
    Posts: 261
    Registered: ‎05-22-2006

    Re: Access drawing from new thread

    02-18-2012 09:17 AM in reply to: matus.brlit

    Hi Matus,

     

    AutoCAD APIs are not multithreaded safe, so you should only access the AutoCAD APIs from your main thread. This is documented in the ObjectARX helpfiles. If you want to process data on another thread, its best to extract what you need on your main thread, send it to your worker thread, and then send the result back to the main thread if you need to send something back to AutoCAD.

     

    But to answer your question on Databases, HostApplicationServices.WorkingDatabase and MdiActiveDocument.Database will (in general) return the same Database.

     

    Cheers,

     

    Stephen

    Cheers,

    Stephen Preston
    Autodesk Developer Network
    Please use plain text.
    Mentor
    Posts: 219
    Registered: ‎03-11-2008

    Re: Access drawing from new thread

    02-19-2012 11:11 PM in reply to: StephenPreston

    Thanks for the clarification on databases.

     

    But can you also explain why HostApplicationServices.WorkingDatabase is threadsafe? At least it works for me.

    Please use plain text.