Apis and communications between apps

Communications between different applications/businesses as either the human user or another application. Some business functionallity might need to be split into several apps so that they can managed properly, worked on separately, hide implementation, designed better but they will have to all communicate with one another to provide a business service. This means that apps needs to talk to each other and there are a few ways of doing this.

Push/Pull

  • polling/reading

    • making request regularly

    • use of scheduled job ie quartz

    • Ask if there is any new stuff to get on a schedule, then gets it

  • pushing

    • app pushes stuff to your app regularly or when new stuff needs to be pushed

  • Crawlers

    • form of polling

    • cover feeds/webpage for info

    • get data, and then get data from other links

  • Web sockets

Others

Last updated

Was this helpful?