com.microsoft.azure.javamsalruntime.AsyncHandle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javamsalruntime Show documentation
Show all versions of javamsalruntime Show documentation
The Java/MSALRuntime interop layer facilitates communication between MSAL Java and the MSALRuntime API, allowing developers to easily access WAM from a Java program
The newest version!
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
package com.microsoft.azure.javamsalruntime;
import com.sun.jna.ptr.LongByReference;
/**
* Represents an MSALRUNTIME_ASYNC_HANDLE
*/
public class AsyncHandle extends HandleBase {
public AsyncHandle() {
super(MsalRuntimeInterop.MSALRUNTIME_LIBRARY::MSALRUNTIME_ReleaseAsyncHandle);
}
AsyncHandle(LongByReference msalRuntimeHandle) {
super(msalRuntimeHandle, MsalRuntimeInterop.MSALRUNTIME_LIBRARY::MSALRUNTIME_ReleaseAsyncHandle);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy