 |
GridGain C++
|
Go to the documentation of this file.
22 #ifndef _IGNITE_IGNITE_BINDING
23 #define _IGNITE_IGNITE_BINDING
25 #include <ignite/common/common.h>
26 #include <ignite/common/concurrent.h>
28 #include <ignite/impl/ignite_binding_impl.h>
29 #include <ignite/impl/bindings.h>
54 IgniteBinding(common::concurrent::SharedPointer<impl::IgniteBindingImpl> impl) :
71 RegisterCacheEntryProcessor<P>(err);
87 impl::IgniteBindingImpl *im = impl.Get();
91 im->RegisterCallback(impl::IgniteBindingImpl::CallbackType::CACHE_ENTRY_PROCESSOR_APPLY,
93 typename P::ValueType,
typename P::ReturnType,
typename P::ArgumentType>, err);
98 "Instance is not usable (did you check for error?).");
111 impl::IgniteBindingImpl *im = impl.Get();
117 im->RegisterCallback(impl::IgniteBindingImpl::CallbackType::CACHE_ENTRY_FILTER_CREATE,
118 typeId, impl::binding::FilterCreate<F>);
123 "Instance is not usable (did you check for error?).");
136 impl::IgniteBindingImpl *im = impl.Get();
142 im->RegisterCallback(impl::IgniteBindingImpl::CallbackType::COMPUTE_JOB_CREATE,
143 typeId, impl::binding::ComputeJobCreate<F, typename F::ReturnType>);
148 "Instance is not usable (did you check for error?).");
164 return impl.IsValid();
169 common::concurrent::SharedPointer<impl::IgniteBindingImpl> impl;
173 #endif //_IGNITE_IGNITE_BINDING
Ignite Binding.
Definition: ignite_binding.h:37
Ignite API.
Definition: cache.h:47
void RegisterCacheEntryProcessor()
Register type as Cache Entry Processor.
Definition: ignite_binding.h:67
bool IsValid() const
Check if the instance is valid.
Definition: ignite_binding.h:162
void RegisterComputeFunc()
Register type as Compute function.
Definition: ignite_binding.h:134
IgniteBinding()
Default constructor.
Definition: ignite_binding.h:43
static const int IGNITE_ERR_GENERIC
Generic Ignite error.
Definition: ignite_error.h:130
Binary type structure.
Definition: binary_type.h:148
void RegisterCacheEntryProcessor(IgniteError &err)
Register Type as Cache Entry Processor.
Definition: ignite_binding.h:85
static void ThrowIfNeeded(const IgniteError &err)
Throw an error if code is not IGNITE_SUCCESS.
Definition: ignite_error.cpp:26
void RegisterCacheEntryEventFilter()
Register type as Cache Entry Event Filter.
Definition: ignite_binding.h:109
Ignite error information.
Definition: ignite_error.h:93
IgniteBinding(common::concurrent::SharedPointer< impl::IgniteBindingImpl > impl)
Constructor.
Definition: ignite_binding.h:54