Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add process_client_event #33

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/ndb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,23 @@ impl Ndb {
Ok(())
}

pub fn process_client_event(&self, json: &str) -> Result<()> {
// Convert the Rust string to a C-style string
let c_json = CString::new(json).expect("CString::new failed");
let c_json_ptr = c_json.as_ptr();

// Get the length of the string
let len = json.len() as libc::c_int;

let res = unsafe { bindings::ndb_process_client_event(self.as_ptr(), c_json_ptr, len) };

if res == 0 {
return Err(Error::NoteProcessFailed);
}

Ok(())
}

pub fn query<'a>(
&self,
txn: &'a Transaction,
Expand Down
Loading