You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Joris Van Remoortere (JIRA)" <ji...@apache.org> on 2015/04/20 22:50:59 UTC

[jira] [Created] (MESOS-2638) Add support for Optional parameters to protobuf handlers to wrap option fields

Joris Van Remoortere created MESOS-2638:
-------------------------------------------

             Summary: Add support for Optional parameters to protobuf handlers to wrap option fields
                 Key: MESOS-2638
                 URL: https://issues.apache.org/jira/browse/MESOS-2638
             Project: Mesos
          Issue Type: Improvement
          Components: libprocess
            Reporter: Joris Van Remoortere


We currently don't have a way to install a protobuf handler for an option field where the handler takes an Optional parameter of the 'option' field in the protobuf message. The goal is to be able to do:
{code:title=example|borderStyle=solid}
message Person {
  required string name = 1;
  option uint32_t age = 2; 
}

void person(const std::string& name, const Option<uint32_t>& age) 
{
  if (age.isKnown()) {
    ...
  }
}

install<Person>(person,
  &Person::name,
  &Person::age); 
{code}
We can then use this to test whether the field was provided, as opposed to capturing a reference to a default constructed value of the the type.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)