Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/react-native/ReactAndroid/api/ReactAndroid.api
Original file line number Diff line number Diff line change
Expand Up @@ -4866,7 +4866,8 @@ public abstract interface class com/facebook/react/uimanager/events/EventDispatc
public abstract fun removeListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
}

public class com/facebook/react/uimanager/events/EventDispatcherImpl : com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/uimanager/events/EventDispatcher {
public final class com/facebook/react/uimanager/events/EventDispatcherImpl : com/facebook/react/bridge/LifecycleEventListener, com/facebook/react/uimanager/events/EventDispatcher {
public static final field Companion Lcom/facebook/react/uimanager/events/EventDispatcherImpl$Companion;
public fun <init> (Lcom/facebook/react/bridge/ReactApplicationContext;)V
public fun addBatchEventDispatchedListener (Lcom/facebook/react/uimanager/events/BatchEventDispatchedListener;)V
public fun addListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
Expand All @@ -4880,6 +4881,9 @@ public class com/facebook/react/uimanager/events/EventDispatcherImpl : com/faceb
public fun removeListener (Lcom/facebook/react/uimanager/events/EventDispatcherListener;)V
}

public final class com/facebook/react/uimanager/events/EventDispatcherImpl$Companion {
}

public abstract interface class com/facebook/react/uimanager/events/EventDispatcherListener {
public abstract fun onEventDispatch (Lcom/facebook/react/uimanager/events/Event;)V
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public abstract class Event<T : Event<T>> {
* Two events will only ever try to be coalesced if they have the same event name, view id, and
* coalescing key.
*/
public open fun coalesce(otherEvent: Event<T>?): Event<T>? =
public open fun coalesce(otherEvent: Event<*>?): Event<*>? =
if (timestampMs >= otherEvent?.timestampMs ?: 0) this else otherEvent

/**
Expand Down
Loading
Loading