mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-03 18:10:55 +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) {
|
pub fn replace(&self, callback: impl Fn(LuaError) + Send + 'static) {
|
||||||
self.exists.store(true, Ordering::Relaxed);
|
self.exists.store(true, Ordering::Relaxed);
|
||||||
self.inner.lock_blocking().replace(Box::new(callback));
|
self.inner.lock_blocking().replace(Box::new(callback));
|
||||||
|
@ -50,3 +44,11 @@ impl ThreadErrorCallback {
|
||||||
fn default_error_callback(e: LuaError) {
|
fn default_error_callback(e: LuaError) {
|
||||||
eprintln!("{e}");
|
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>> {
|
pub fn new(lua: &'lua Lua) -> LuaResult<Runtime<'lua>> {
|
||||||
let queue_spawn = ThreadQueue::new();
|
let queue_spawn = ThreadQueue::new();
|
||||||
let queue_defer = ThreadQueue::new();
|
let queue_defer = ThreadQueue::new();
|
||||||
let error_callback = ThreadErrorCallback::new_default();
|
let error_callback = ThreadErrorCallback::default();
|
||||||
|
|
||||||
Ok(Runtime {
|
Ok(Runtime {
|
||||||
lua,
|
lua,
|
||||||
|
|
Loading…
Add table
Reference in a new issue