私はユーザーからのリクエストに対して多くのマイクロサービスを開発中です。どんなライブラリでも、請求、勧告 のような多くの他のサービスへのasyn呼び出しを行い、チェックと応答を戻します。REST/RPC API asynがマイクロサービスを呼び出す
例:
コールいくつかのAPI
get(request):
// call two services async
billing = billingService(user_id) //service end point 1
recommendation = recommendation_service(user_id) //service end point 2
// we will have results from those two services
//check conditions response to user
if billing == OK:
response (recommendation) // response