示例#1
0
    public bool CheckMessageExist <T>()
    {
        var meta = _metaSet.GetByType <T>();

        if (meta == MessageMetaSet.NullMeta)
        {
            return(false);
        }
        if (_dispatcher.Contain(meta.id))
        {
            return(true);
        }
        return(false);
    }