view src/main/java/nl/cwi/monetdb/responses/AutoCommitResponse.java @ 64:bb0d66ad7dc6 embedded

More done
author Pedro Ferreira <pedro.ferreira@monetdbsolutions.com>
date Thu, 01 Dec 2016 16:52:27 +0100 (2016-12-01)
parents
children e605cdd6373f
line wrap: on
line source
package nl.cwi.monetdb.responses;

/**
 * The AutoCommitResponse represents a transaction message.  It
 * stores (a change in) the server side auto commit mode.<br />
 * <tt>&amp;4 (t|f)</tt>
 */
public class AutoCommitResponse extends SchemaResponse {
    public final boolean autocommit;

    public AutoCommitResponse(boolean ac) {
        // fill the blank final
        this.autocommit = ac;
    }
}