Realm C++ SDK 버전 v2.2.0

default_scheduler.hpp

1
2//
3//저작권 2024 Realm Inc.
4//
5// Apache 라이선스, 버전 2.0 에 따라 라이선스가 부여됨(>라이선스>);
6// 라이선스를 준수하는 경우를 제외하고는 이 파일을 사용할 수 없습니다.
7// 다음에서 라이선스 사본을 얻을 수 있습니다.
8//
9// http://www.apache.org/licences/LICENSE-2.0
10//
11// 관련 법률에서 요구하거나 문서로 동의하지 않는 한, 소프트웨어
12// 라이선스에 따라 배포되며 >AS IS> BASIS,
13// Express 묵시적이든 어떤 종류의 보증이나 조건도 제공하지 않습니다.
14// 권한을 관리하는 특정 언어에 대한 내용은 라이선스를 참조하세요.
15// 라이선스에 따른 제한 사항.
16//
18
19#ifndef CPPREALM_DEFAULT_SCHEDULERS_HPP
20#define CPPRALM_DEFAULT_SCHEDULERS_HPP
21
22#include <cpprealm/scheduler.hpp>
23
24#if __has_include(<cpprealm/util/config.h>)
25#include <cpprealm/util/config.h>
26#endif
27
28#ifdefined(REALM_HAVE_UV) && REALM_HAVE_UV
29typedef struct uv_loop_s uv_loop_t;
30#endif
31
32네임스페이스 영역::default_scheduler {
41 std::shared_ptr<scheduler> make_platform_default();
42
48 set_default_factory (std::function<std::shared_ptr<scheduler>()>&& Factory_fn);
49
55 std::shared_ptr<scheduler> make_default();
56} // 네임스페이스 영역
57
58#endif//CPPREALM_DEFAULT_SCHEDULERS_HPP