A virtual private network (VPN) is a technology that creates an encrypted connection over a less secure network. The benefit of using a VPN is that it ensures the appropriate level of security to the connected systems when the underlying Read More …
Blog
RMI Application
RMI (Remote Method Invocation) Remote Method Invocation (RMI) Understanding stub and skeleton stub skeleton Requirements for the distributed applications Steps to write the RMI program RMI Example The RMI (Remote Method Invocation) is an API that provides a mechanism to create distributed Read More …
RMI Application
RMI (Remote Method Invocation) Remote Method Invocation (RMI) Understanding stub and skeleton stub skeleton Requirements for the distributed applications Steps to write the RMI program RMI Example The RMI (Remote Method Invocation) is an API that provides a mechanism to create distributed Read More …
RMI Application
RMI (Remote Method Invocation) Remote Method Invocation (RMI) Understanding stub and skeleton stub skeleton Requirements for the distributed applications Steps to write the RMI program RMI Example The RMI (Remote Method Invocation) is an API that provides a mechanism to create distributed Read More …
Daemon Thread Program Lab-7
class daem { public static void main (String arg[]) { First f = new First(); if(f.isDaemon()) { System.out.println("this is Daemon thread"); } else { System.out.println("this is a not daemon thread"); } f.setDaemon(true); if(f.isDaemon()) { System.out.println("this is Daemon thread"); } else Read More …
Daemon Thread Program Lab-7
class daem { public static void main (String arg[]) { First f = new First(); if(f.isDaemon()) { System.out.println("this is Daemon thread"); } else { System.out.println("this is a not daemon thread"); } f.setDaemon(true); if(f.isDaemon()) { System.out.println("this is Daemon thread"); } else Read More …
Daemon Thread Program Lab-7
class daem { public static void main (String arg[]) { First f = new First(); if(f.isDaemon()) { System.out.println("this is Daemon thread"); } else { System.out.println("this is a not daemon thread"); } f.setDaemon(true); if(f.isDaemon()) { System.out.println("this is Daemon thread"); } else Read More …
MCS024 – Assignment 5(c) – Write a java program to create two threads with different priority.
class ThreadPrio implements Runnable { public long count=0; Thread t; private volatile boolean running=true; public ThreadPrio(int p) { t=new Thread(this); t.setPriority(p); } Read More …
MCS024 – Assignment 5(c) – Write a java program to create two threads with different priority.
class ThreadPrio implements Runnable { public long count=0; Thread t; private volatile boolean running=true; public ThreadPrio(int p) { t=new Thread(this); t.setPriority(p); } Read More …
MCS024 – Assignment 5(c) – Write a java program to create two threads with different priority.
class ThreadPrio implements Runnable { public long count=0; Thread t; private volatile boolean running=true; public ThreadPrio(int p) { t=new Thread(this); t.setPriority(p); } Read More …