@@ -29,31 +29,31 @@ final class Cassandra {
2929 * has been written on the Coordinator. Requests with this consistency level
3030 * are not guranteed to make it to Replica nodes.
3131 *
32- * @see ExecutionOptions::__construct ()
32+ * @see Session::execute ()
3333 */
3434 const CONSISTENCY_ANY = 0 ;
3535
3636 /**
3737 * Consistency level ONE guarantees that data has been written to at least
3838 * one Replica node.
3939 *
40- * @see ExecutionOptions::__construct ()
40+ * @see Session::execute ()
4141 */
4242 const CONSISTENCY_ONE = 1 ;
4343
4444 /**
4545 * Consistency level TWO guarantees that data has been written to at least
4646 * two Replica nodes.
4747 *
48- * @see ExecutionOptions::__construct ()
48+ * @see Session::execute ()
4949 */
5050 const CONSISTENCY_TWO = 2 ;
5151
5252 /**
5353 * Consistency level THREE guarantees that data has been written to at least
5454 * three Replica nodes.
5555 *
56- * @see ExecutionOptions::__construct ()
56+ * @see Session::execute ()
5757 */
5858 const CONSISTENCY_THREE = 3 ;
5959
@@ -65,23 +65,23 @@ final class Cassandra {
6565 * ceiling function and `RF` is the replication factor used. For example,
6666 * for a replication factor of `5`, the majority is `ceil(5 / 2 + 1) = 3`.
6767 *
68- * @see ExecutionOptions::__construct ()
68+ * @see Session::execute ()
6969 */
7070 const CONSISTENCY_QUORUM = 4 ;
7171
7272 /**
7373 * Consistency level ALL guarantees that data has been written to all
7474 * Replica nodes.
7575 *
76- * @see ExecutionOptions::__construct ()
76+ * @see Session::execute ()
7777 */
7878 const CONSISTENCY_ALL = 5 ;
7979
8080 /**
8181 * Same as `CONSISTENCY_QUORUM`, but confined to the local data center. This
8282 * consistency level works only with `NetworkTopologyStrategy` replication.
8383 *
84- * @see ExecutionOptions::__construct ()
84+ * @see Session::execute ()
8585 */
8686 const CONSISTENCY_LOCAL_QUORUM = 6 ;
8787
@@ -90,35 +90,36 @@ final class Cassandra {
9090 * least a majority Replica nodes in all datacenters. This consistency level
9191 * works only with `NetworkTopologyStrategy` replication.
9292 *
93- * @see ExecutionOptions::__construct ()
93+ * @see Session::execute ()
9494 */
9595 const CONSISTENCY_EACH_QUORUM = 7 ;
9696
9797 /**
9898 * This is a serial consistency level, it is used in conditional updates,
9999 * e.g. (`CREATE|INSERT ... IF NOT EXISTS`), and should be specified as the
100- * `serial_consistency` option of the ExecutionOptions instance.
100+ * `serial_consistency` execution option when invoking `session.execute`
101+ * or `session.execute_async`.
101102 *
102103 * Consistency level SERIAL, when set, ensures that a Paxos commit fails if
103104 * any of the replicas is down.
104105 *
105- * @see ExecutionOptions::__construct ()
106+ * @see Session::execute ()
106107 */
107108 const CONSISTENCY_SERIAL = 8 ;
108109
109110 /**
110111 * Same as `CONSISTENCY_SERIAL`, but confined to the local data center. This
111112 * consistency level works only with `NetworkTopologyStrategy` replication.
112113 *
113- * @see ExecutionOptions::__construct ()
114+ * @see Session::execute ()
114115 */
115116 const CONSISTENCY_LOCAL_SERIAL = 9 ;
116117
117118 /**
118119 * Same as `CONSISTENCY_ONE`, but confined to the local data center. This
119120 * consistency level works only with `NetworkTopologyStrategy` replication.
120121 *
121- * @see ExecutionOptions::__construct ()
122+ * @see Session::execute ()
122123 */
123124 const CONSISTENCY_LOCAL_ONE = 10 ;
124125
@@ -378,12 +379,12 @@ final class Cassandra {
378379 /**
379380 * The current version of the extension.
380381 */
381- const VERSION = '1.3.0-devel ' ;
382+ const VERSION = '1.3.0 ' ;
382383
383384 /**
384385 * The version of the cpp-driver the extension is compiled against.
385386 */
386- const CPP_DRIVER_VERSION = '2.6.0-dev ' ;
387+ const CPP_DRIVER_VERSION = '2.7.0 ' ;
387388
388389 /**
389390 * Creates a new cluster builder for constructing a Cluster object.
0 commit comments