Loading...
Searching...
No Matches
isolatingDispatcher.h
Go to the documentation of this file.
1//
2// Copyright 2025 Pixar
3//
4// Licensed under the terms set forth in the LICENSE.txt file available at
5// https://openusd.org/license.
6//
7#ifndef PXR_BASE_WORK_ISOLATING_DISPATCHER_H
8#define PXR_BASE_WORK_ISOLATING_DISPATCHER_H
9
11
12#include "pxr/pxr.h"
13
15#include "pxr/base/work/impl.h"
16
17PXR_NAMESPACE_OPEN_SCOPE
18
48#if defined WORK_IMPL_HAS_ISOLATING_DISPATCHER
49 public Work_Dispatcher<PXR_WORK_IMPL_NS::WorkImpl_IsolatingDispatcher>
50#else
51 public Work_Dispatcher<PXR_WORK_IMPL_NS::WorkImpl_Dispatcher>
52#endif
53{};
54
55PXR_NAMESPACE_CLOSE_SCOPE
56
57#endif
The isolating work dispatcher is a specialization of WorkDispatcher, mirroring its public API and doc...