C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/net/RequestIncompleteException.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_REQUEST_INCOMPLETE_EXCEPTION_HPP
00008 #define COH_REQUEST_INCOMPLETE_EXCEPTION_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/pof/PofReader.hpp"
00013 #include "coherence/io/pof/PofWriter.hpp"
00014 #include "coherence/io/pof/PortableException.hpp"
00015 
00016 COH_OPEN_NAMESPACE2(coherence,net)
00017 
00018 using coherence::io::pof::PofReader;
00019 using coherence::io::pof::PofWriter;
00020 using coherence::io::pof::PortableException;
00021 
00022 
00023 /**
00024 * Signals that a request execution in a clustered environment failed to
00025 * complete successfully. For some specific requests this exception could
00026 * carry a partial execution result or failure information.
00027 *
00028 * @author bbc  2013.05.16
00029 * @since Coherence 12.1.3 
00030 */
00031 class COH_EXPORT RequestIncompleteException
00032     : public throwable_spec<RequestIncompleteException,
00033         extends<PortableException> >
00034     {
00035     friend class factory<RequestIncompleteException>;
00036 
00037     // ----- constructors ---------------------------------------------------
00038 
00039     protected:
00040         /**
00041         * Create a RequestIncompleteException.
00042         *
00043         * @param vsMsg   the detail message
00044         * @param vCause  the underlying cause of the exception
00045         */
00046         RequestIncompleteException(String::View vsMsg = String::null_string,
00047                 Exception::View vCause = NULL);
00048 
00049         /**
00050         * Blocked copy constructor.
00051         */
00052         RequestIncompleteException(const RequestIncompleteException&);
00053 
00054 
00055     // ----- RequestIncompleteException interface ------------------------------
00056 
00057     public:
00058         /**
00059         * Return a partial execution result that may have been assembled
00060         * prior to the timeout. The result type is usually the same as the
00061         * type of the return value for the corresponding request.
00062         *
00063         * @return a partial execution result
00064         */
00065         virtual Object::Holder getPartialResult() const;
00066 
00067         /**
00068         * Specify a partial execution result.
00069         *
00070         * @param ohPartialResult  a partial execution result
00071         */
00072         virtual void setPartialResult(Object::Holder ohPartialResult);
00073 
00074 
00075     // ----- PortableObject interface ---------------------------------------
00076 
00077     public:
00078         /**
00079         * {@inheritDoc}
00080         */
00081         virtual void readExternal(PofReader::Handle hIn);
00082 
00083         /**
00084         * {@inheritDoc}
00085         */
00086         virtual void writeExternal(PofWriter::Handle hOut) const;
00087 
00088 
00089     // ----- data members ---------------------------------------------------
00090 
00091     protected:
00092         /**
00093         * Partial execution result (optional).
00094         */
00095         FinalHolder<Object> f_ohPartialResult;
00096     };
00097 
00098 COH_CLOSE_NAMESPACE2
00099 
00100 #endif // COH_REQUEST_INCOMPLETE_EXCEPTION_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.