1 #include "WorkletEventHandler.h" 2 3 namespace ABI49_0_0reanimated { 4 process(double eventTimestamp,const jsi::Value & eventValue)5void 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