You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support streaming streaming responses for callable functions. (#8609)
The new .stream() API allows the client to consume streaming responses from the WIP streaming callable functions in Firebase Functions Node.js SDK.
When client makes a request to the callable function w/ header Accept: text/event-stream, the callable function responds with response chunks in Server-Sent Event format.
The sdk changes here abstracts over the wire-protocol by parsing the response chunks and returning an instance of a AsyncIterable to consume to data:
import { getFunctions, httpsCallable } from "firebase/functions";
const functions = getFunctions();
const generateText = httpsCallable(functions, 'generateText');
const resp = await generateText.stream(
{ text: 'What is your favorite Firebase service and why?' },
{ signal: AbortSignal.timeout(60_000) },
);
try {
for await (const message of resp.stream) {
console.log(message); // prints "foo", "bar"
}
console.log(await resp.data) // prints "foo bar"
} catch (e) {
// FirebaseError(code='cancelled', message='Request was cancelled.');
console.error(e)
}
Copy file name to clipboardexpand all lines: docs-devsite/functions.md
+7-15
Original file line number
Diff line number
Diff line change
@@ -34,16 +34,18 @@ Cloud Functions for Firebase
34
34
| Interface | Description |
35
35
| --- | --- |
36
36
|[Functions](./functions.functions.md#functions_interface)| A <code>Functions</code> instance. |
37
+
|[HttpsCallable](./functions.httpscallable.md#httpscallable_interface)| A reference to a "callable" HTTP trigger in Cloud Functions. |
37
38
|[HttpsCallableOptions](./functions.httpscallableoptions.md#httpscallableoptions_interface)| An interface for metadata about how calls should be executed. |
38
39
|[HttpsCallableResult](./functions.httpscallableresult.md#httpscallableresult_interface)| An <code>HttpsCallableResult</code> wraps a single result from a function call. |
40
+
|[HttpsCallableStreamOptions](./functions.httpscallablestreamoptions.md#httpscallablestreamoptions_interface)| An interface for metadata about how a stream call should be executed. |
41
+
|[HttpsCallableStreamResult](./functions.httpscallablestreamresult.md#httpscallablestreamresult_interface)| An <code>HttpsCallableStreamResult</code> wraps a single streaming result from a function call. |
39
42
40
43
## Type Aliases
41
44
42
45
| Type Alias | Description |
43
46
| --- | --- |
44
47
| [FunctionsErrorCode](./functions.md#functionserrorcode) | The set of Firebase Functions status codes. The codes are the same at the ones exposed by gRPC here: https://github.com/grpc/grpc/blob/master/doc/statuscodes.md<!-- -->Possible values: - 'cancelled': The operation was cancelled (typically by the caller). - 'unknown': Unknown error or an error from a different error domain. - 'invalid-argument': Client specified an invalid argument. Note that this differs from 'failed-precondition'. 'invalid-argument' indicates arguments that are problematic regardless of the state of the system (e.g. an invalid field name). - 'deadline-exceeded': Deadline expired before operation could complete. For operations that change the state of the system, this error may be returned even if the operation has completed successfully. For example, a successful response from a server could have been delayed long enough for the deadline to expire. - 'not-found': Some requested document was not found. - 'already-exists': Some document that we attempted to create already exists. - 'permission-denied': The caller does not have permission to execute the specified operation. - 'resource-exhausted': Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space. - 'failed-precondition': Operation was rejected because the system is not in a state required for the operation's execution. - 'aborted': The operation was aborted, typically due to a concurrency issue like transaction aborts, etc. - 'out-of-range': Operation was attempted past the valid range. - 'unimplemented': Operation is not implemented or not supported/enabled. - 'internal': Internal errors. Means some invariants expected by underlying system has been broken. If you see one of these errors, something is very broken. - 'unavailable': The service is currently unavailable. This is most likely a transient condition and may be corrected by retrying with a backoff. - 'data-loss': Unrecoverable data loss or corruption. - 'unauthenticated': The request does not have valid authentication credentials for the operation. |
45
48
|[FunctionsErrorCodeCore](./functions.md#functionserrorcodecore)| Functions error code string appended after "functions/" product prefix. See [FunctionsErrorCode](./functions.md#functionserrorcode) for full documentation of codes. |
46
-
|[HttpsCallable](./functions.md#httpscallable)| A reference to a "callable" HTTP trigger in Google Cloud Functions. |
47
49
48
50
## function(app, ...)
49
51
@@ -101,7 +103,7 @@ Returns a reference to the callable HTTPS trigger with the given name.
0 commit comments