Skip to content

Commit

Permalink
Revert "Add EventGrid binding samples (#36)."
Browse files Browse the repository at this point in the history
This reverts commit 8bea461.
  • Loading branch information
Junyi Yi committed Jul 24, 2018
1 parent fff71ab commit 0f76559
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
* <li>Any POJO type</li>
* </ul>
*
* <p>The following example shows a Java function that prints out an event:</p>
* <p>The following example shows an event grid trigger which prints out the object:</p>
*
* <pre>{@literal @}FunctionName("eventGridMonitor")
* public void logEvent(
* {@literal @}EventGridTrigger(name = "event") String content,
* <pre>{@literal @}FunctionName("egprocessor")
* public void eventGridProcessor(
* {@literal @}EventGridTrigger(name = "obj") MyModel obj,
* final ExecutionContext context
* ) {
* context.getLogger().info(content);
* context.getLogger().info(obj.toString());
* }</pre>
*
* @since 1.0.0
Expand Down

0 comments on commit 0f76559

Please sign in to comment.