aboutsummaryrefslogtreecommitdiffstats
path: root/documentapi/src/main/java/com/yahoo/documentapi/messagebus/protocol/LazyDecoder.java
blob: bb68fdb57fdfd6dbc69076996a5b4f0c6c64e65b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.documentapi.messagebus.protocol;

import com.yahoo.document.serialization.DocumentDeserializer;
import com.yahoo.messagebus.Routable;

public interface LazyDecoder {

    public void decode(Routable obj, DocumentDeserializer buf);

}