package org.snmp4j.agent.io;

import java.io.IOException;
import org.snmp4j.smi.Variable;

/* JADX INFO: loaded from: classes.dex */
public interface MOInput {
    void close() throws IOException;

    int getImportMode();

    Context readContext() throws IOException;

    IndexedVariables readIndexedVariables() throws IOException;

    MOInfo readManagedObject() throws IOException;

    Sequence readSequence() throws IOException;

    Variable readVariable() throws IOException;

    void skipContext(Context context) throws IOException;

    void skipManagedObject(MOInfo mOInfo) throws IOException;
}
