Bo Lu

Results 110 comments of Bo Lu

@dmitry-timofeev , I just have a such use case. Basically what I want to achieve is to set a customized property of my exception object before throwing it. But [`env.throw`](https://docs.rs/jni/0.14.0/jni/struct.JNIEnv.html#method.throw)...

thank you @dmitry-timofeev , the option 1 is working for me. I didn't notice that JObject can be convert to JThrowable. Here is my code: ```rust let msg_obj = env.new_string(msg).unwrap();...

There is a variant `Io` error in Zbox::Error https://docs.rs/zbox/0.8.8/zbox/enum.Error.html. Not sure why you cannot match it? Could you post your code? Or maybe you're talking about convert Zbox::Error to Io::Error?...

Do you any special use cases for this request? Currently, all transactions are managed internally and they are not visible for application. I don't think there any necessity to expose...

> > Fnode, Store, Segment, Content > > This is no the information I expect to see about transaction. > > Is pathname of a file being written and number...

> > Currently, all transactions are managed internally and they are not visible for application. > > This abstraction becomes leaky as soon as user tries to do anything tricky...

It doesn't support snapshot at this moment, but if more people are interested, I will put it in the next feature list.

Yes, CLI utilities are very useful, especially during development phase. That can be put in plan for next stage. For FUSE support, yes you can add it, but I think...

ZboxFS can't protect data from OS or other users with root privileges. Its goal is to provide a secure file repository and try to keep its exposure as minimum as...

> I can see the issue with fuse support, would a webdav interface be a possible alternative? No, there is no plan for a webdav interface. But if you like...