3

私はマイクロサービスと Lagom フレームワークを初めて使用します。ServiceCalls を作成するサービス APInamedcallでは、pathcallとの違いがわかりませんrestcall。どこでいつどれを使うべきですか?

たとえば、次の呼び出しで:

  ServiceCall<NotUsed, Cargo, Done> register();
  restCall(Method.POST, "/api/registration", register()

  ServiceCall<NotUsed, NotUsed, Source<Cargo, ?>> getLiveRegistrations();
  pathCall("/api/registration/live", getLiveRegistrations())

  ServiceCall<User, NotUsed> createUser();
  namedCall("/api/users", this::createUser)
4

1 に答える 1