次のように仮定します。
ExecutorService service = ...;
// somewhere in the code the executorService is used this way:
service.submit(() -> { ... });
ラムダ式のデフォルトはCallable
.
代わり
にインスタンス化する方法はありますか?Runnable
ご協力いただきありがとうございます。
次のように仮定します。
ExecutorService service = ...;
// somewhere in the code the executorService is used this way:
service.submit(() -> { ... });
ラムダ式のデフォルトはCallable
.
代わり
にインスタンス化する方法はありますか?Runnable
ご協力いただきありがとうございます。