Làm thế nào tôi có thể nối tiếp thanh lịch một lambda?
Ví dụ, mã dưới đây ném a NotSerializableException
. Làm thế nào tôi có thể sửa nó mà không tạo SerializableRunnable
giao diện "giả"?
public static void main(String[] args) throws Exception {
File file = Files.createTempFile("lambda", "ser").toFile();
try (ObjectOutput oo = new ObjectOutputStream(new FileOutputStream(file))) {
Runnable r = () -> System.out.println("Can I be serialized?");
oo.writeObject(r);
}
try (ObjectInput oi = new ObjectInputStream(new FileInputStream(file))) {
Runnable r = (Runnable) oi.readObject();
r.run();
}
}