HasAttributeUpdates() public method

public HasAttributeUpdates ( ) : bool
return bool
コード例 #1
0
ファイル: PoshServer.cs プロジェクト: yousafgill/Posh
 //publish json massage with updated attributes
 public void PublishUpdate()
 {
     if (RemoteContext.HasAttributeUpdates())
     {
         var json = RemoteContext.GetAttributeUpdateJson();
         FUpdateAttributeTopic.OnNext(json);
     }
 }