The oneway keyword indicates a method that can be treated as asynchronous with distributed objects.
Questions tagged [oneway]
40 questions
10
votes
1 answer
WPF OneWayToSource binding initial value
I have a RadioButton element whose IsChecked property is bound to MyProperty in ViewModel. The Binding has mode OneWayToSource for some reasons, it pushes the value from RadioButton.IsChecked to ViewModel.MyProperty.
RadioButton.IsChecked is…

monstr
- 1,680
- 1
- 25
- 44
9
votes
2 answers
WebRTC one-way video call
we are fiddling around with WebRTC in our company. And i stumbled upon a weird thing, which i'm not sure is by design in WebRTC or an implementaiton error on our side.
We currently have a simple WebApp which displays a Contact-List of online…

Sven Eppler
- 1,646
- 1
- 15
- 26
5
votes
2 answers
WPF: TwoWay binding is ALWAYS updated - OneWay binding is ONLY ONCE updated
I know what you think: It is 2017, please don't come up with this again, but I really can not find any valueable explanation for this.
Please have a look at the ActiveNotes property in this XAML-Code.
I have this TwoWay binding in my XAML, which…

Michael
- 938
- 1
- 10
- 34
3
votes
1 answer
Calling a task-based asynchronous one way callback method from WCF service
I have a WCF service which uses a callback contract to notify the clients, similar to this
public interface IClientCallback
{
[OperationContract(IsOneWay = true)]
void NotifySomething();
}
and the service code calling it similar to…

Ivan Stoev
- 195,425
- 15
- 312
- 343
2
votes
1 answer
Bind once in Angular 1.5+
I'm using components for my application, and I'm displaying the template only when my promise resolves :
var config = function ($stateProvider) {
'ngInject';
$stateProvider.state('test', {
url: '/',
views: {
…

redAce
- 1,558
- 4
- 14
- 24
2
votes
1 answer
Save Changes of View in Viewmodel?
I'm trying to display a model and I want to save it when the user clicks a button.
(Bind ModelView OneWay to Model and if the save button was pressed I update the source manually.)
Is that possible?
Here I created a small example with my problem.…

MisterPresident
- 563
- 7
- 20
2
votes
1 answer
Removing NA in data table for one way ANOVA
I'm currently working on a project for school where I need to run a one way ANOVA on the %uninsured motorists from each state divided by region. I'm trying to remove the NA from the table, but am having trouble.
> motor
MW NE SE W
1 0.11…

Steve Bronder
- 926
- 11
- 17
2
votes
2 answers
How to find out whether current method is flagged with IsOneWay
Is there a way to know whether the currently executing WCF method is a OneWay method?
I'm using httpBinding and the question relates to the server side.
I searched in properties for OperationContext on MSDN and couldn't find it.
EDIT:
I used the…

Sergey Litvinov
- 7,408
- 5
- 46
- 67
1
vote
3 answers
Fit linear model in R for various values
In this experiment, four different diets were tried on animals. Then researchers measured their effects on blood coagulation time.
## Data :
coag diet
1 62 A
2 60 A
3 63 A
4 59 A
5 63 B
6 67 B
7 …

pola
- 65
- 8
1
vote
4 answers
Angular - How to get input value at ngFor loop with one way binding
Can you give me a way to get input value at ngFor loop with one way binding?
1
vote
1 answer
How to implement one-way operation in Java Web Services?
How to implement one-way operation in Web Services (using Java or Spring annotations)?
I have tried to add one way as given below
@WebService
public interface DanduServices {
@Oneway
public void saveDanduInformation(@WebParam(name =…

fatherazrael
- 5,511
- 16
- 71
- 155
1
vote
1 answer
What are relationships in hyperledger composer?
Can you explain the concept of relationships in hyperledger composer, defined by the "arrow -->"?

Anam Nizami
- 377
- 1
- 4
- 22
1
vote
1 answer
How does the ng-click=function() works inside ng-reapeat? Does it created multiple references of scope function?
I have a ng-repeat over 2000 employees data which is displayed in rows and inside each repeating row/block, I have a function which is passing salary information to directive for some processing. I am binding function on ng-click="calcSalary(emp)".…

Arvind Ugale
- 11
- 2
1
vote
1 answer
Can any one please describe me that what is oneway in aidl for android?
Can any one please describe me that what is oneway in aidl for android ?
like in below code what oneway does ?
oneway interface IPackageStatsObserver {
void onGetStatsCompleted(in PackageStats pStats, boolean succeeded);
}

Rajdeep Sarker
- 11
- 1
- 4
1
vote
2 answers
WCF oneway exception faults channel
I haven't found a clear answer on this. so if there is already a question about this, my bad.
I have a WCF service that pushes data via a callback method to connected clients. this callback method is oneway. so everytime there is new data I loop…

Sebastian S
- 285
- 2
- 16