2018-05-31 22:31:03 +00:00
|
|
|
// Copyright (c) 2004-present, Facebook, Inc.
|
|
|
|
|
|
|
|
// This source code is licensed under the MIT license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree.
|
2018-04-10 19:46:20 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <fabric/core/ReactPrimitives.h>
|
|
|
|
#include <fabric/core/ShadowNode.h>
|
2018-09-04 05:53:18 +00:00
|
|
|
#include <fabric/uimanager/ShadowViewMutation.h>
|
2018-04-10 19:46:20 +00:00
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Abstract class for Scheduler's delegate.
|
|
|
|
*/
|
|
|
|
class SchedulerDelegate {
|
|
|
|
public:
|
2018-04-20 16:40:06 +00:00
|
|
|
|
|
|
|
virtual ~SchedulerDelegate() = default;
|
|
|
|
|
2018-04-10 19:46:20 +00:00
|
|
|
/*
|
|
|
|
* Called right after Scheduler computed (and laid out) a new updated version
|
2018-09-04 05:53:18 +00:00
|
|
|
* of the tree and calculated a set of mutations which are suffisient
|
|
|
|
* to construct a new one.
|
2018-04-10 19:46:20 +00:00
|
|
|
*/
|
2018-09-04 05:53:18 +00:00
|
|
|
virtual void schedulerDidFinishTransaction(Tag rootTag, const ShadowViewMutationList &mutations) = 0;
|
2018-04-10 19:46:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Called right after a new ShadowNode was created.
|
|
|
|
*/
|
|
|
|
virtual void schedulerDidRequestPreliminaryViewAllocation(ComponentName componentName) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace react
|
|
|
|
} // namespace facebook
|