Questions tagged [oneway]

The oneway keyword indicates a method that can be treated as asynchronous with distributed objects.

40 questions
1
vote
1 answer

Angularjs One way Binding Binds Data Two Way

I have a pseudo code like this where using the one-way-binding operator(::) I tried to see if angular is watching for changes. So I had to include it inside an input tag. the model data inside the input tag should be resolved one way because of ::…
Nasif Md. Tanjim
  • 3,862
  • 4
  • 28
  • 38
1
vote
2 answers

Angular - how to one-way link two input values?

I have a large HTML form with lots of text. There are some duplicated input fields and customer wants to prefill bottom fields with values filled earlier, but without affecting already filled inputs. Think about it as in the following scenario: you…
JustAMartin
  • 13,165
  • 18
  • 99
  • 183
1
vote
0 answers

OneWay event logging on WCF block the thread

I'd like to log some actions using OneWay events on WCF callback channel I've got several methods like: [OperationContract(IsOneWay = true)] void LogSomething(String txt); on my callback channel. I'm iterating over every subscribed logger instance…
Adassko
  • 5,201
  • 20
  • 37
1
vote
0 answers

is modern version of the Fisher–Yates shuffle irreversible (i.e. Durstenfeld's version)?

1) Original version of Fisher–Yates shuffle is reversible (see: Reversible shuffle algorithm using a key) but my question is regarding modern version of the Fisher–Yates shuffle i.e. Durstenfeld's versionm - Given shuffled set S' and random numbers…
B Avinash
  • 11
  • 3
1
vote
1 answer

Understanding PHP crypt() return value

PHP crypt function is said to have this return value: "Returns the hashed string or a string that is shorter than 13 characters and is guaranteed to differ from the salt on failure." I don't understand what this means... I've understood basically…
fast-reflexes
  • 4,891
  • 4
  • 31
  • 44
0
votes
0 answers

P-Value in one side ANOVA analysis of summarized groups

I have summarized data from four groups (mean, sd, n) and I wanna know if they are signifikant different (pvalue). I used the "ind.oneway.second(m = m, n = n, sd = sd)" formula of the rpsychi package to calculate ANOVA analysis. It shows me a lot of…
mira2007
  • 1
  • 1
0
votes
0 answers

Repeated Measure - correct code to measuring differences between Treatments (Over Time)

for a research project I need to run an ANOVA test to see the statistical significance of the differences between some treatments. The experiment consisted in inoculating some bacteria in different tubes containing different treatments with…
0
votes
0 answers

How to get non-homogenous options or two one-ways for a roundtrip in FlightOffersSearch API get or post call?

I am using the FlightOffersSearch API and want to get 2 one-ways for a round trip search. I am also trying to get non-homogenous options in the results. My question is what option should I send in the request to get the 2 one-ways or non-homogenous…
Essell
  • 1
0
votes
1 answer

Apache Camel Cxf OneWay method not handle SoapFault

I have a very simple camel route that makes soap to soap calls. Everything work fine, but if one of the @Oneway operation throws SaopFault, I cannot catch the fault onException. How can I catch soapFault onException to set message to…
0
votes
1 answer

Disable custom WPF control when binding is oneway

I have a custom WPF control (using UserControl as base) that exposes a bindable properties (using DependencyProperty). I want to disable editing in this control when one of the properties is a oneway binding. public partial class OnOffControl :…
0
votes
1 answer

How to programmatically specify one-way binding in C#?

Simple C# question, but I have been unable to find the answer, despite much searching. (I think I know how it works in WPF XAML file, but I am using WinForms and binding programmatically). This must be simple. How do I tell it to bind one-way? In…
0
votes
1 answer

use of - (oneway void) in iOS

Can anyone send me a sample code to write asynchronus method using "oneway" (oneway void) for iOS. So that it will not block the calling thread until the method returns.
Swapnil
  • 1,858
  • 2
  • 22
  • 49
0
votes
1 answer

Angular - Detect value change with one way binding

I have this It works! the value displayed changes when the function return value change. How can i detect if the value change? UPDATE: Using: ngOnChanges(changes: SimpleChanges) :…
Fraga
  • 1,361
  • 2
  • 15
  • 47
0
votes
2 answers

one way method in asp.net web-api

I am a newbie to asp.net Web API service. I want to create a method that does not return any value one-way method. How can I achieve this in asp.net Web API service? I did a lot of search on google but I do not know what exactly should happen. I…
Noor Allan
  • 421
  • 2
  • 7
  • 17
0
votes
1 answer

Bash: nested loop one way comparison

I have one queston about nested loop with bash. I have an input files with one file name per line (full path) I read this file and then i make a nest loop: for i in $filelines ; do echo $i for j in $filelines ; do ./program $i…
Olorin.G
  • 37
  • 7