All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.javamsalruntime.AsyncHandle Maven / Gradle / Ivy

Go to download

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