1 #include "WorkletEventHandler.h"
2 
3 namespace ABI49_0_0reanimated {
4 
5 void WorkletEventHandler::process(
6     double eventTimestamp,
7     const jsi::Value &eventValue) {
8   _runtimeHelper->runOnUIGuarded(
9       _handlerFunction, jsi::Value(eventTimestamp), eventValue);
10 }
11 
12 } // namespace reanimated
13