mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-03 01:50:57 +01:00
Properly use default trait
This commit is contained in:
parent
588fc46807
commit
b10ec240da
2 changed files with 9 additions and 7 deletions
|
@ -22,12 +22,6 @@ impl ThreadErrorCallback {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn new_default() -> Self {
|
||||
let this = Self::new();
|
||||
this.replace(default_error_callback);
|
||||
this
|
||||
}
|
||||
|
||||
pub fn replace(&self, callback: impl Fn(LuaError) + Send + 'static) {
|
||||
self.exists.store(true, Ordering::Relaxed);
|
||||
self.inner.lock_blocking().replace(Box::new(callback));
|
||||
|
@ -50,3 +44,11 @@ impl ThreadErrorCallback {
|
|||
fn default_error_callback(e: LuaError) {
|
||||
eprintln!("{e}");
|
||||
}
|
||||
|
||||
impl Default for ThreadErrorCallback {
|
||||
fn default() -> Self {
|
||||
let this = Self::new();
|
||||
this.replace(default_error_callback);
|
||||
this
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,7 +28,7 @@ impl<'lua> Runtime<'lua> {
|
|||
pub fn new(lua: &'lua Lua) -> LuaResult<Runtime<'lua>> {
|
||||
let queue_spawn = ThreadQueue::new();
|
||||
let queue_defer = ThreadQueue::new();
|
||||
let error_callback = ThreadErrorCallback::new_default();
|
||||
let error_callback = ThreadErrorCallback::default();
|
||||
|
||||
Ok(Runtime {
|
||||
lua,
|
||||
|
|
Loading…
Add table
Reference in a new issue