health.check_handle
声明
public void check_handle()
参数
参数名 | 描述 |
---|
作用
检测当前使用handle
使用方式
HealthD.gs
import gs.lang.*;
import gs.util.*;
import pkg.gtest;
import pkg.health;
void create()
{
load_static(health, this_domain());
}
void destruct()
{
health.end();
}
public mixed check_handle()
{
health.check_handle();
return "success";
}