We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ac8ca0 commit 59786d5Copy full SHA for 59786d5
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "lua_actor"
3
-version = "0.1.17"
+version = "0.1.18"
4
license = "MIT"
5
authors = ["JunYi JohnTeee Lee <johnteee@gmail.com>"]
6
include = ["src/**/*.rs", "Cargo.toml"]
src/actor.rs
@@ -25,7 +25,7 @@ impl Default for Actor {
25
26
impl Drop for Actor {
27
fn drop(&mut self) {
28
- self.stop_handler();
+ // self.stop_handler();
29
}
30
31
@@ -51,7 +51,7 @@ impl Actor {
51
self.lua = lua;
52
53
#[inline]
54
- fn stop_handler(&self) {
+ pub fn stop_handler(&self) {
55
if let Some(ref _h) = self.handler {
56
_h.lock().unwrap().stop()
57
0 commit comments