Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StreamGenerator.java « openpgp « spongycastle « org « java « main « src « pg - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d65339f32b5c5761738524cc8a1e14de625e0b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.spongycastle.openpgp;

import java.io.IOException;

/**
 * Callback interface for generators that produce a stream to be informed when the stream has been
 * closed by the client.
 */
interface StreamGenerator
{
    /**
     * Signal that the stream has been closed.
     */
    void close()
        throws IOException;
}