Hello Vigneshwaran,
>I am struggling to update individual column using function.
In this context, does "individual column" mean the specific field variable
of the domain object stored in the target region, below?
-----
public class EmployeeData {
private static final long serialVersionUID = 1L;
private String id = "";
private String lastName = "";
private String familyName = "";
public MyData() {
}
public MyData(String id, String lastName, String familyName) {
this.id = id;
this.lastName = lastName;
this.familyName = familyName;
}
:
public String getLastName() {
return lastName;
}
:
-----
Thanks.
--
Akihiro Kitada | Staff Customer Engineer | +81 80 3716 3736
Support.Pivotal.io <http://support.pivotal.io/> | Mon-Fri 9:00am to
5:30pm JST | 1-877-477-2269
[image: support] <https://support.pivotal.io/> [image: twitter]
<https://twitter.com/pivotal> [image: linkedin]
<https://www.linkedin.com/company/3048967> [image: facebook]
<https://www.facebook.com/pivotalsoftware> [image: google plus]
<https://plus.google.com/+Pivotal> [image: youtube]
<https://www.youtube.com/playlist?list=PLAdzTan_eSPScpj2J50ErtzR9ANSzv3kl>
2017-06-21 5:17 GMT+09:00 vigneshwaran02 <[email protected]>:
> I am struggling to update individual column using function. Can anyone
> share
> code snippet to handle at function side to update.
>
> Region - Partition
>
> Client code -
>
> Map val = new HashMap();
> val.put("lastName", "G");
> Set setFilter = new HashSet();
> setFilter.add("1");
> Execution execution =
> FunctionService.onRegion(individual).withFilter(setFilter).withArgs(val);
> ResultCollector rc =
> execution.execute("com.xxx.logic.IndividualUpdateFunction");
>
>
>
>
> --
> View this message in context: http://apache-geode-
> incubating-developers-forum.70738.x6.nabble.com/Individual-Column-update-
> using-function-tp23672.html
> Sent from the Apache Geode (Incubating) Developers Forum mailing list
> archive at Nabble.com.
>