Skip to content

Commit de4c6a2

Browse files
committed
Javadoc
1 parent fa15448 commit de4c6a2

File tree

1 file changed

+2
-0
lines changed
  • firebase-functions/ktx/src/main/kotlin/com/google/firebase/functions/ktx

1 file changed

+2
-0
lines changed

firebase-functions/ktx/src/main/kotlin/com/google/firebase/functions/ktx/Functions.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,14 @@ class FirebaseFunctionsKtxRegistrar : ComponentRegistrar {
4949
listOf(LibraryVersionComponent.create(LIBRARY_NAME, BuildConfig.VERSION_NAME))
5050
}
5151

52+
/** Returns a reference to the Callable HTTPS trigger with the given name and call options. */
5253
fun FirebaseFunctions.getHttpsCallable(name: String, init: HttpsCallableOptions.Builder.() -> Unit) : HttpsCallableReference {
5354
val builder = HttpsCallableOptions.Builder()
5455
builder.init()
5556
return getHttpsCallable(name, builder.build())
5657
}
5758

59+
/** Returns a reference to the Callable HTTPS trigger with the given URL and call options. */
5860
fun FirebaseFunctions.getHttpsCallableFromUrl(url: URL, init: HttpsCallableOptions.Builder.() -> Unit) : HttpsCallableReference {
5961
val builder = HttpsCallableOptions.Builder()
6062
builder.init()

0 commit comments

Comments
 (0)