56475
|
1 |
/*
|
|
2 |
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
|
7 |
* published by the Free Software Foundation. Oracle designates this
|
|
8 |
* particular file as subject to the "Classpath" exception as provided
|
|
9 |
* by Oracle in the LICENSE file that accompanied this code.
|
|
10 |
*
|
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
15 |
* accompanied this code).
|
|
16 |
*
|
|
17 |
* You should have received a copy of the GNU General Public License version
|
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
20 |
*
|
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
22 |
* or visit www.oracle.com if you need additional information or have any
|
|
23 |
* questions.
|
|
24 |
*/
|
|
25 |
package jdk.incubator.sql2;
|
|
26 |
|
|
27 |
/**
|
|
28 |
* A PrimitiveOperation can be submitted, nothing more. Used only by
|
|
29 |
* {@link OperationGroup#catchOperation} and as a supertype to {@link Operation}.
|
|
30 |
*
|
|
31 |
* References in JavaDoc to the "collection of Operations" and "member
|
|
32 |
* Operations" should be understood to include PrimitiveOperations. The
|
|
33 |
* distinction between {@link Operation} and {@link PrimitiveOperation} in the
|
|
34 |
* API is strictly followed as it enables the compiler to catch a significant
|
|
35 |
* class of errors. The two types are not distinguished in the JavaDoc as making
|
|
36 |
* such a distinction would not add clarity.
|
|
37 |
*
|
56797
|
38 |
* @see Operation
|
|
39 |
* @see OperationGroup#catchOperation
|
56475
|
40 |
*/
|
|
41 |
public interface PrimitiveOperation<T> {
|
|
42 |
|
|
43 |
/**
|
|
44 |
* Add this {@link PrimitiveOperation} to the tail of the {@link Operation}
|
|
45 |
* collection of the {@link Connection} that created this
|
|
46 |
* {@link PrimitiveOperation}. A {@link PrimitiveOperation} can be submitted
|
|
47 |
* only once. Once a {@link PrimitiveOperation} is submitted it is immutable.
|
|
48 |
* Any attempt to modify a submitted {@link PrimitiveOperation} will throw
|
|
49 |
* {@link IllegalStateException}.
|
|
50 |
*
|
|
51 |
* @return a {@link Submission} for this {@link PrimitiveOperation}
|
|
52 |
* @throws IllegalStateException if this method is called more than once on
|
|
53 |
* this {@link PrimitiveOperation}
|
|
54 |
*/
|
|
55 |
Submission<T> submit();
|
|
56 |
|
|
57 |
}
|