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

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