We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06f7f03 commit 62b878bCopy full SHA for 62b878b
src/main/php/com/amazon/aws/lambda/Streaming.class.php
@@ -0,0 +1,15 @@
1
+<?php namespace com\amazon\aws\lambda;
2
+
3
+interface Streaming {
4
5
+ /**
6
+ * Invoke this lambda with the given event and context, streaming the
7
+ * response using the given stream.
8
+ *
9
+ * @param var $event
10
+ * @param com.amazon.aws.lambda.Stream $stream
11
+ * @param com.amazon.aws.lambda.Context $context
12
+ * @return void
13
+ */
14
+ public function handle($event, $stream, $context);
15
+}
0 commit comments