src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialArray.java
changeset 54106 9a90236ab64c
parent 51181 01b8120f867a
child 58338 faf791c5a710
equal deleted inserted replaced
54105:d58599c7cdef 54106:9a90236ab64c
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    48  * must be available in order for the SQL <code>Array</code> object to be
    48  * must be available in order for the SQL <code>Array</code> object to be
    49  * materialized (have all of its elements brought to the client server)
    49  * materialized (have all of its elements brought to the client server)
    50  * if necessary. At this time, logical pointers to the data in the data source,
    50  * if necessary. At this time, logical pointers to the data in the data source,
    51  * such as locators, are not currently supported.
    51  * such as locators, are not currently supported.
    52  *
    52  *
    53  * <h3> Thread safety </h3>
    53  * <h2> Thread safety </h2>
    54  *
    54  *
    55  * A SerialArray is not safe for use by multiple concurrent threads.  If a
    55  * A SerialArray is not safe for use by multiple concurrent threads.  If a
    56  * SerialArray is to be used by more than one thread then access to the
    56  * SerialArray is to be used by more than one thread then access to the
    57  * SerialArray should be controlled by appropriate synchronization.
    57  * SerialArray should be controlled by appropriate synchronization.
    58  *
    58  *