Package com.banuba.sdk.effect_player
Interface ErrorListener
public interface ErrorListener
Interface to receive errors from `EffectPlayer`.
Could be called from any thread inside EffectPlayer. So the implementation of this listener should be thread-safe.
-
Method Summary
Modifier and Type Method Description void
onError(java.lang.String domain, java.lang.String message)
-
Method Details
-
onError
void onError(@NonNull java.lang.String domain, @NonNull java.lang.String message)- Parameters:
domain
- source of error (e.g. "js_engine")
-