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

F79659-03

coherence/net/AbstractPriorityTask.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_ABSTRACT_PRIORITY_TASK_HPP
00008 #define COH_ABSTRACT_PRIORITY_TASK_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/PortableObject.hpp"
00015 #include "coherence/net/PriorityTask.hpp"
00016 
00017 COH_OPEN_NAMESPACE2(coherence,net)
00018 
00019 using coherence::io::pof::PofReader;
00020 using coherence::io::pof::PofWriter;
00021 using coherence::io::pof::PortableObject;
00022 
00023 
00024 /**
00025 * An abstract base for AbstractPriorityTask implementations. It implements
00026 * all AbstractPriorityTask interface methods and is intended to be extended
00027 * for concrete uses.
00028 *
00029 * @author djl  2008.05.15
00030 */
00031 class COH_EXPORT AbstractPriorityTask
00032     : public abstract_spec<AbstractPriorityTask,
00033         extends<Object>,
00034         implements<PortableObject, PriorityTask> >
00035     {
00036     // ----- constructors ---------------------------------------------------
00037 
00038     protected:
00039         /**
00040         * @internal
00041         */
00042         AbstractPriorityTask();
00043 
00044 
00045     // ----- PriorityTask interface -----------------------------------------
00046 
00047     public:
00048         /**
00049         * {@inheritDoc}
00050         */
00051         virtual int32_t getSchedulingPriority() const;
00052 
00053         /**
00054         * {@inheritDoc}
00055         */
00056         virtual int64_t getExecutionTimeoutMillis() const;
00057 
00058         /**
00059         * {@inheritDoc}
00060         */
00061         virtual int64_t getRequestTimeoutMillis() const;
00062 
00063         /**
00064         * {@inheritDoc}
00065         * <p>
00066         * This implementation is a no-op.
00067         */
00068         virtual void runCanceled(bool fAbandoned);
00069 
00070 
00071     // ----- PortableObject interface ---------------------------------------
00072 
00073     public:
00074         /**
00075         * {@inheritDoc}
00076         */
00077         virtual void readExternal(PofReader::Handle hIn);
00078 
00079         /**
00080         * {@inheritDoc}
00081         */
00082         virtual void writeExternal(PofWriter::Handle hOut) const;
00083 
00084 
00085     // ----- Data member mutators -------------------------------------------
00086 
00087     public:
00088         /**
00089         * Specify this task's scheduling priority. Valid values are one of
00090         * the SCHEDULE_* constants.
00091         *
00092         * @param iPriority  this task's scheduling priority
00093         */
00094         virtual void setSchedulingPriority(int32_t iPriority);
00095 
00096         /**
00097         * Specify the maximum amount of time this task is allowed to run
00098         * before the corresponding service will attempt to stop it.
00099         *
00100         * @param lTimeout the task timeout value in milliseconds
00101         */
00102         virtual void setExecutionTimeoutMillis(int64_t lTimeout);
00103 
00104         /**
00105         * Specify the maximum amount of time a calling thread is willing to
00106         * wait for a result of the request execution.
00107         *
00108         * @param lTimeout  the request timeout value in milliseconds
00109         */
00110         virtual void setRequestTimeoutMillis(int64_t lTimeout);
00111 
00112 
00113     // ----- data members ---------------------------------------------------
00114 
00115     private:
00116         /**
00117         * The scheduling priority value.
00118         *
00119         * Default value PriorityTask::schedule_standard
00120         */
00121         int32_t m_iSchedulingPriority;
00122 
00123         /**
00124         * The task execution timeout value.
00125         *
00126         * Default value PriorityTask::timeout_default
00127         */
00128         int64_t m_lExecutionTimeout;
00129 
00130         /**
00131         * The request timeout value.
00132         *
00133         * Default value PriorityTask::timeout_default
00134         */
00135         int64_t m_lRequestTimeout;
00136     };
00137 
00138 COH_CLOSE_NAMESPACE2
00139 
00140 #endif // COH_ABSTRACT_PRIORITY_TASK_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.