[jira] [Created] (IGNITE-6592) Describe Ignite C++ pointer reading and writing semantics

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (IGNITE-6592) Describe Ignite C++ pointer reading and writing semantics

Anton Vinogradov (Jira)
Igor Sapego created IGNITE-6592:
-----------------------------------

             Summary: Describe Ignite C++ pointer reading and writing semantics
                 Key: IGNITE-6592
                 URL: https://issues.apache.org/jira/browse/IGNITE-6592
             Project: Ignite
          Issue Type: Task
          Components: documentation
    Affects Versions: 2.2
            Reporter: Igor Sapego
            Assignee: Igor Sapego
             Fix For: 2.3


Need to describe how user can read and write nullable values using pointer semantic in Ignite C++:
{code}
// One can write null value like this:
writer.WriteObject<SomeObject*>(nullptr);
// And read it like this:
std::unique_ptr<SomeObject> nullableVal = reader.ReadObject<SomeObject*>();
if (nullableVal) {
  // Processing...
}
{code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)