私はマイクロサービスと 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)