summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/fs4/EolPacket.java
blob: 1e907f67696d3c659d64ce59e5824bd4704e9808 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.fs4;

import java.nio.ByteBuffer;

/**
 * A EOL packet signaling end of transmission.
 * This package has no body.
 *
 * @author bratseth
 */
public class EolPacket extends Packet {

    private EolPacket() {
    }

    public static EolPacket create() {
        return new EolPacket();
    }

    public int getCode() { return 200; }

    public void decodeBody(ByteBuffer buffer) {
        // No body
    }

    public void encodeBody(ByteBuffer buffer) {
        // No body
    }

    public String toString() {
        return "EOL packet";
    }

}