Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add COM4J.wrapSta for wrapping STA com objects #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on May 29, 2018

  1. Add COM4J.wrapSta for wrapping STA com objects

    Objects wrapped in this way can only be called from the same thread they
    were created by (and wrapped in).
    
    When using these wrapped objects calls to the COM object are done in the
    same thread instead of using a second thread. This has the disadvantage
    that these objects can't be passed around and used from anywhere, but
    where a COM object has to be called from a specific thread it means they
    can be used (mostly only a problem when the Java code is running in the
    same process as an in-process COM server).
    
    Fixes kohsuke#68
    tonyroberts committed May 29, 2018
    Configuration menu
    Copy the full SHA
    db7f3a5 View commit details
    Browse the repository at this point in the history