what-the-bank/sources/io/flutter/plugin/common/MethodCodec.java

19 lines
518 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package io.flutter.plugin.common;
import java.nio.ByteBuffer;
/* loaded from: classes.dex */
public interface MethodCodec {
Object decodeEnvelope(ByteBuffer byteBuffer);
MethodCall decodeMethodCall(ByteBuffer byteBuffer);
ByteBuffer encodeErrorEnvelope(String str, String str2, Object obj);
ByteBuffer encodeErrorEnvelopeWithStacktrace(String str, String str2, Object obj, String str3);
ByteBuffer encodeMethodCall(MethodCall methodCall);
ByteBuffer encodeSuccessEnvelope(Object obj);
}