Questions tagged [data-sharing]

249 questions
0
votes
1 answer

Thread Local Storage working principle

This is an example about Thread Local Storage (TLS) from Apress parallel programming book. I know that if we have 4 cores computer 4 thread can run parallel in same time. In this example we create 10 task and we suppose that have 4 cores computer.…
altandogan
  • 1,245
  • 6
  • 21
  • 44
0
votes
0 answers

sharing data between the directives angularjs

I have a page with 2 directives. one directive(Directive-1) is responsible for loading data grid(using KENDO-GRID) and another directive has buttons to print, export as Excel, PDF files etc. From Directive-2, when export button is clicked, I need to…
0
votes
2 answers

How to share data between programs that use different languages to run

I want to share data between programs that run locally which uses different languages, I don't know how to approach this. For example, if I have a program that uses C# to run and another that uses python to run, and I want to share some strings…
Shaked Dahan
  • 402
  • 5
  • 22
0
votes
1 answer

Share function between two controllers angularjs

I'm trying to create a shared resource between two controllers in angularjs. I have use the getData() in second controller to get the stored data and fill up a data table inside the second controller. I omitted the data Table part in the code for…
0
votes
1 answer

Updating shared data between controllers

I'm trying to implement data sharing between AngularJS controllers, I've followed an approach to share a service instance between two controllers and there's no problem with it, the data from a variable shows up. But, now I need to update a variable…
0
votes
0 answers

Singleton object is gone, My data is cleared

There are several activities and fragments that need access to a specific data, so i created a singleton object to store data in that. The problem is after a long time that the app is in background, that singleton object will disapear and become…
Hamidreza Shokouhi
  • 973
  • 1
  • 12
  • 24
0
votes
1 answer

Sharing Data Between Applications with different App ID Prefix in iOS

I've done some research on how to share data between apps. The most appealing approach is to use App Groups but that requires same app ID prefix. I know there are some similar questions on Stack Overflow but I couldn't find a suitable solution for…
Robert
  • 67
  • 2
  • 6
0
votes
2 answers

Getting shared data with photo and text

I would like to share data into my app the same in WhatsApp: When I'm trying it in my own app I only get the text ("Check out..."). How can I get the rest of the data: Image, Title, Description and website address? Intent intent = getIntent(); …
user1787773
  • 888
  • 1
  • 11
  • 19
0
votes
0 answers

Hosting Data for Excel Users

researching options here... I have a C# (winforms) application which allows users to enter some data into a SQL database. There are two SQL server database locations Americas(2012 v10)/Europe(2014 v11) and the tables are merge replicated. The…
beeker
  • 780
  • 4
  • 17
0
votes
0 answers

Send data directly to local computer from android app via WiFi

I am building an android app, a part of which is to transfer an image DIRECTLY to a java program locally running on my computer using WiFi. I found out that i can do it by creating a homegroup in my local computer (windows 8.1) and put the image on…
0
votes
2 answers

How to access the same Spark RDD from more than one session?

I have common dataset which needs to be used in multiple programs/processes. How can I create one Spark RDD and share the same RDD in multiple scala programs?
0
votes
0 answers

Store common info in a file in android

Can I create and use a file in android which can be accessed and written into by another android app, not signed by the same signature on the play store?
Sid
  • 1,270
  • 2
  • 15
  • 30
0
votes
3 answers

Sharing data between selected users in web application c#

My website uses a web user control. The properties for the user control will be set will be common for a set of my users. e.g. if I have 20 users accessing my website, 5 of them may be using the user control with id = 1 , 4 using the user control…
0
votes
1 answer

How to acess Servlet from Rest web service using Jersey

I have a Webservice using jersey. I want to access a hashmap which is created in a servlet from rest service. That hashmap in servlet sholud be created only once during application startup. this is web.xml
Ipsita Tah
  • 237
  • 2
  • 4
  • 11
0
votes
1 answer

perl : how to share variables and subroutines across various perl files

I am trying something of this sort: main.pl use YAML::XS our $yaml_input = YAML::XS::LoadFile("$input_file"); parse_yaml($yaml_input); #this variable has to be passed to the function parse_yaml which is in other file. parser.pl sub…
hanish
  • 67
  • 6