Skip to content

B.tech Computer Science and IT

B.tech Computer Science and IT

  • C language

Asynchronous Channels (Java 7)

Java Network Programming / February 26, 2023 / yashpal singh / 0

Asynchronous channels in Java 7 provide a way for developers to perform non-blocking I/O operations on channels, allowing for more efficient handling of I/O operations in high-performance applications. In C, asynchronous I/O operations are typically implemented using operating system-specific APIs such as epoll on Linux or kqueue on BSD and macOS. These APIs allow applications

Read more

The Channels Class in java

Java Network Programming / February 26, 2023 / yashpal singh / 0

The Channels class in Java is a utility class that provides various methods for working with channels, which are a key concept in Java’s NIO (New Input/Output) API. Channels are objects that represent a connection to a data source or a data destination, such as a file, a network socket, or a pipe. They provide

Read more

ServerSocketChannel in Java

Java Network Programming / February 26, 2023 / yashpal singh / 0

In Java network programming, ServerSocketChannel is a class that provides a way to listen for incoming TCP connections from clients. It is a type of SelectableChannel that can be used for non-blocking I/O operations, which allows the application to perform other tasks while waiting for incoming connections. To create a ServerSocketChannel, you can call the

Read more

SocketChannel in java network

Java Network Programming / February 26, 2023 / yashpal singh / 0

In Java network programming, SocketChannel is a class that provides a way to establish and manage a TCP connection between a client and a server. It is a type of SelectableChannel that can be used for non-blocking I/O operations, which allows the application to perform other tasks while waiting for data to be sent or

Read more

Channels in java network

Java Network Programming / February 26, 2023 / yashpal singh / 0

In Java network programming, a channel is an abstraction that represents a connection between two entities, such as a client and a server. Channels are used to facilitate communication between these entities by providing a way to read and write data over the network. Java provides two types of channels for network communication: socket channels

Read more

How to run a c program in terminal in windows ?

C language / February 26, 2023 / yashpal singh / 0

To install MinGW in Windows, you can follow these steps: That’s it! MinGW is now installed on your Windows system and ready to use. You can use it to compile and run C and C++ programs on your computer. To run a C program in the terminal on Windows, you can follow these steps: cd

Read more

Marking and Resetting in java network

Java Network Programming / February 26, 2023 / yashpal singh / 0

In Java, marking and resetting are techniques used to keep track of the position of a buffer or input stream. When you mark a buffer or input stream, you are setting a marker that can be used later to reset the position to the point where the marker was set. This can be useful when

Read more

Slicing Buffers in java with Example

Java Network Programming / February 26, 2023 / yashpal singh / 0

In Java, slicing a buffer refers to the process of creating a new buffer that is a subset of an existing buffer. Slicing can be useful when you want to process only a portion of the data in a buffer, or when you want to create a new buffer that shares data with the original

Read more

Duplicating Buffers in java network

Java Network Programming / February 26, 2023 / yashpal singh / 0

In Java network programming, duplicating buffers refers to the process of creating a new buffer that is an exact copy of an existing buffer. This can be useful when you need to process data from a buffer in different ways, or when you want to send the same data to multiple destinations without modifying the

Read more

Compacting Buffers in Java

Java Network Programming / February 26, 2023 / yashpal singh / 0

In Java network programming, compacting buffers refers to the process of rearranging the data in a buffer to make room for new data to be added. This is a useful technique for managing memory when sending or receiving large amounts of data over a network connection. When data is added to a buffer, it is

Read more

1 2 3 4 … 60

Recent Posts

  • How install WordPress on Google Cloud ?
  • Getting started with Google Cloud Platform
  • What is Cloud computing ?
  • IP Multicast
  • DatagramChannel in java

Recent Comments

No comments to show.

Archives

  • March 2023
  • February 2023
  • January 2023
  • December 2022

Categories

  • C language
  • cloud computing
  • google cloud
  • Java Network Programming
  • About
  • Privacy Policy

Copyright © 2023 B.tech

Search