Skip to content

Commit

Permalink
Make jni interfaces internal. (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
DariusIMP authored Sep 8, 2023
1 parent d596cdf commit bc58d24
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<img src="https://raw.githubusercontent.com/eclipse-zenoh/zenoh/master/zenoh-dragon.png" height="150">

[![CI](https://github.com/eclipse-zenoh/zenoh-kotlin/workflows/CI/badge.svg)](https://github.com/eclipse-zenoh/zenoh-kotlin/actions?query=workflow%3A%22CI%22)
[![Discussion](https://img.shields.io/badge/discussion-on%20github-blue)](https://github.com/eclipse-zenoh/roadmap/discussions)
[![Discord](https://img.shields.io/badge/chat-on%20discord-blue)](https://discord.gg/2GJ958VuHs)
[![License](https://img.shields.io/badge/License-EPL%202.0-blue)](https://choosealicense.com/licenses/epl-2.0/)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package io.zenoh.jni.callbacks

fun interface JNIGetCallback {
internal fun interface JNIGetCallback {

fun run(
replierId: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package io.zenoh.jni.callbacks

fun interface JNIQueryableCallback {
internal fun interface JNIQueryableCallback {
fun run(keyExprPtr: Long,
selectorParams: String,
withValue: Boolean,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package io.zenoh.jni.callbacks

fun interface JNISubscriberCallback {
internal fun interface JNISubscriberCallback {
fun run(
keyExpr: Long,
payload: ByteArray,
Expand Down

0 comments on commit bc58d24

Please sign in to comment.