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