blob: 88173ec69ffec72b5e967870949e723ea27de12a [file] [log] [blame] [edit]
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#ifndef AWS_JNI_CLIENT_H
#define AWS_JNI_CLIENT_H
struct aws_mqtt5_client_java_jni {
struct aws_mqtt5_client *client;
jobject jni_client;
JavaVM *jvm;
struct aws_tls_connection_options tls_options;
struct aws_tls_connection_options http_proxy_tls_options;
jobject jni_publish_events;
jobject jni_lifecycle_events;
};
#endif /* AWS_JNI_CLIENT_H */