In previous chapters, we started working on an implementation of a text sentiment analysis application using Azure serverless computing. We built a number of functions and discussed the process of setting up triggers as well as input and output bindings.
Standalone functions will work great in some cases, however, in most applications, we will need to integrate the serverless computing with other types of services to achieve the results we require. In this chapter, you will learn more about Azure Function integrations and dependencies and leveraging additional cloud services where applicable. We will discuss some of the most common scenarios, including the following:
- Integration with Logic Apps to process a Twitter feed
- Integration with Service Bus
- Sharing code between different functions in the same Function App
- Adding references to the NuGet packages...