src/jdk.jfr/share/classes/jdk/jfr/consumer/EventStream.java
author egahlin
Fri, 02 Aug 2019 20:04:02 +0200
branchJEP-349-branch
changeset 57627 b38c7a822244
parent 57604 838f9a7635b6
child 57690 9316d02dd4a5
permissions -rw-r--r--
Add EventStream::openRepository() method
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     1
/*
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     2
 * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     4
 *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    10
 *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    15
 * accompanied this code).
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    16
 *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    20
 *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    23
 * questions.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    24
 */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    25
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    26
package jdk.jfr.consumer;
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    27
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    28
import java.io.IOException;
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    29
import java.nio.file.Path;
57434
216bf2e3b542 Add support for EventStrem::openRepository
egahlin
parents: 57386
diff changeset
    30
import java.security.AccessController;
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    31
import java.time.Duration;
57372
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    32
import java.time.Instant;
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    33
import java.util.function.Consumer;
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    34
57627
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    35
import jdk.jfr.internal.Repository;
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    36
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    37
/**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    38
 * Represents a stream of event that actions can be performed up on.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    39
 */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    40
public interface EventStream extends AutoCloseable {
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    41
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    42
    /**
57627
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    43
     * Creates a stream from the disk repository of the current Java Virtual
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    44
     * Machine (JVM).
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    45
     * <p>
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    46
     * By default, the stream starts with the next event flushed by Flight
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    47
     * Recorder.
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    48
     *
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    49
     * @return an event stream, not {@code null}
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    50
     *
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    51
     * @throws IOException if a stream can't be opened, or an I/O error occurs
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    52
     *         when trying to access the repository
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    53
     */
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    54
    public static EventStream openRepository() throws IOException {
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    55
        Repository r = Repository.getRepository();
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    56
        r.ensureRepository();
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    57
        Path path = r.getRepositoryPath().toPath();
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    58
        return new EventDirectoryStream(AccessController.getContext(), path, AbstractEventStream.NEXT_EVENT);
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    59
    }
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    60
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    61
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    62
     * Creates a stream from a disk repository.
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    63
     * <p>
57627
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    64
     * By default, the stream starts with the next event flushed by Flight
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    65
     * Recorder.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    66
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    67
     * @param directory location of the disk repository, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    68
     *
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    69
     * @return an event stream, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    70
     *
57627
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    71
      * @throws IOException if a stream can't be opened, or an I/O error occurs
b38c7a822244 Add EventStream::openRepository() method
egahlin
parents: 57604
diff changeset
    72
     *         when trying to access the repository
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    73
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    74
    public static EventStream openRepository(Path directory) throws IOException {
57604
838f9a7635b6 Cleaner stream reconfiguration + reduced allocation in JFR framework
egahlin
parents: 57452
diff changeset
    75
        return new EventDirectoryStream(AccessController.getContext(), directory, AbstractEventStream.NEXT_EVENT);
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    76
    }
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    77
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    78
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    79
     * Creates an event stream from a file.
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    80
     * <p>
57452
6fabe73e5d9a Reduced allocation pressure. Fix getValue for startTime and duration
egahlin
parents: 57449
diff changeset
    81
     * By default, the stream starts with the first event in the file.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    82
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    83
     * @param file location of the file, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    84
     *
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    85
     * @return an event stream, not {@code null}
57372
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    86
     *
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    87
     * @throws IOException if a stream can't be opened, or an I/O error occurs
57376
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
    88
     *         during reading
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    89
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    90
    public static EventStream openFile(Path file) throws IOException {
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
    91
        return new EventFileStream(file, null, null);
57372
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    92
    }
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    93
50ca040843ea Prepare infrastructure for multiple implementations of EventStream
egahlin
parents: 57361
diff changeset
    94
    /**
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    95
     * Performs an action on all events in the stream.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    96
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    97
     * @param action an action to be performed on each {@code RecordedEvent},
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    98
     *        not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
    99
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   100
    void onEvent(Consumer<RecordedEvent> action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   101
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   102
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   103
     * Performs an action on all events in the stream with a specified name.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   104
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   105
     * @param eventName the name of the event, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   106
     *
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   107
     * @param action an action to be performed on each {@code RecordedEvent}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   108
     *        that matches the event name, not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   109
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   110
    void onEvent(String eventName, Consumer<RecordedEvent> action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   111
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   112
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   113
     * Performs an action when the event stream has been flushed.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   114
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   115
     * @param action an action to be performed after stream has been flushed,
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   116
     *        not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   117
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   118
    void onFlush(Runnable action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   119
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   120
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   121
     * Performs an action when the event stream is closed.
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   122
     * <p>
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   123
     * If the stream is already closed, the action will be executed immediately
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   124
     * in the current thread.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   125
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   126
     * @param action an action to be performed after the stream has been closed,
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   127
     *        not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   128
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   129
    void onClose(Runnable action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   130
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   131
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   132
     * Releases all resources associated with this event stream.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   133
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   134
    void close();
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   135
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   136
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   137
     * Removes an action from the stream.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   138
     * <p>
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   139
     * If the action has been added multiple times, all instance of it will be
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   140
     * removed.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   141
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   142
     * @param action the action to remove, not {@code null}
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   143
     *
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   144
     * @return {@code true} if the action was removed, {@code false} otherwise
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   145
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   146
     * @see #onClose(Runnable)
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   147
     * @see #onFlush(Runnable)
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   148
     * @see #onEvent(Consumer)
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   149
     * @see #onEvent(String, Consumer)
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   150
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   151
    boolean remove(Object action);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   152
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   153
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   154
     * Specifies that the event object in an {@link #onEvent(Consumer)} action
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   155
     * is to be reused.
57376
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   156
     * <p>
57380
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   157
     * If reuse is set to {@code true), a callback should not keep a reference
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   158
     * to the event object after the callback from {@code onEvent} has returned.
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   159
     *
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   160
     * @param resuse if event objects can be reused between calls to
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   161
     * {@code #onEvent(Consumer)}
57376
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   162
     *
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   163
     */
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   164
    public void setReuse(boolean reuse);
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   165
8e8a06a3059c Add foundation for event object reuse
egahlin
parents: 57372
diff changeset
   166
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   167
     * Specifies that events arrives in chronological order, sorted by the time
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   168
     * they were committed to the event stream.
57380
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   169
     *
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   170
     * @param ordered if event objects arrive in chronological order to
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   171
     *        {@code #onEvent(Consumer)}
57380
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   172
     */
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   173
    public void setOrdered(boolean ordered);
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   174
6a7e7743b82f setOrdered and setReuse implemented for file stream, incl. unit tests
egahlin
parents: 57377
diff changeset
   175
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   176
     * Specifies start time of the event stream.
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   177
     *
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   178
     * @param startTime the start time, not {@code null}
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   179
     *
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   180
     * @throws IllegalStateException if the stream has already been started
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   181
     */
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   182
    public void setStartTime(Instant startTime);
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   183
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   184
    /**
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   185
     * Start processing events in the stream.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   186
     * <p>
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   187
     * All actions performed on this stream will happen in the current thread.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   188
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   189
     * @throws IllegalStateException if the stream is already started or if it
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   190
     *         has been closed
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   191
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   192
    void start();
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   193
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   194
    /**
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   195
     * Start processing events in the stream asynchronously.
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   196
     * <p>
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   197
     * All actions on this stream will be performed in a separate thread.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   198
     *
57449
099789ceff7d Provide implementation for all added API methods
egahlin
parents: 57434
diff changeset
   199
     * @throws IllegalStateException if the stream is already started, or if it
57361
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   200
     *         has been closed
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   201
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   202
    void startAsync();
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   203
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   204
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   205
     * Blocks the current thread until the stream is finished, closed, or it
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   206
     * times out.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   207
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   208
     * @param timeout the maximum time to wait, not {@code null}
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   209
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   210
     * @see #start()
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   211
     * @see #startAsync()
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   212
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   213
    void awaitTermination(Duration timeout);
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   214
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   215
    /**
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   216
     * Blocks the current thread until the stream is finished or closed.
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   217
     *
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   218
     * @see #start()
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   219
     * @see #startAsync()
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   220
     */
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   221
    void awaitTermination();
53dccc90a5be Preview-addendum
mgronlun
parents:
diff changeset
   222
}