use of im.actor.core.modules.contacts.entity.BookImportStorage in project actor-platform by actorapp.
the class BookImportActor method preStart.
@Override
public void preStart() {
super.preStart();
byte[] data = context().getContactsModule().getBookImportState().get(0);
if (data != null) {
try {
storage = new BookImportStorage(data);
} catch (Exception e) {
e.getLocalizedMessage();
}
}
}
Aggregations