Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在以下网址中
http://www.gpars.org/guide/
它有时使用terminate(),有时使用stop()。他们是一样的吗?
这是文档stop
stop
向actor发送消息以停止。队列中的所有消息将在停止之前处理,但在此之后不会接受新消息
和terminate
terminate
终止 Actor。后台线程将被中断,未处理的消息将传递给 afterStop 方法(如果存在)。如果 Actor 未启动,则无效。
看到不同?这完全是关于它如何处理关闭以及它如何处理未处理的消息。